/**
 * Present when the toast is expanded in the viewport.
 * @type {boolean}
 */
export declare const expanded = "data-expanded";
/**
 * Present when the toast was limited because the toast limit was exceeded.
 * @type {boolean}
 */
export declare const limited = "data-limited";
/**
 * The type of the toast.
 * @type {string}
 */
export declare const type = "data-type";
/**
 * Present when the toast is being swiped.
 * @type {boolean}
 */
export declare const swiping = "data-swiping";
/**
 * The direction the toast was swiped.
 * @type {'up' | 'down' | 'left' | 'right'}
 */
export declare const swipeDirection = "data-swipe-direction";
/**
 * Present when the toast begins animating in.
 */
export declare const startingStyle = "data-starting-style";
/**
 * Present when the toast is animating out.
 */
export declare const endingStyle = "data-ending-style";