/**
 * Present when the drawer is open.
 */
export declare const open = "data-open";
/**
 * Present when the drawer is closed.
 */
export declare const closed = "data-closed";
/**
 * Present when the drawer begins animating in.
 */
export declare const startingStyle = "data-starting-style";
/**
 * Present when the drawer is animating out.
 */
export declare const endingStyle = "data-ending-style";
/**
 * Present when the drawer is at the expanded (full-height) snap point.
 */
export declare const expanded = "data-expanded";
/**
 * Present when a nested drawer is open.
 */
export declare const nestedDrawerOpen = "data-nested-drawer-open";
/**
 * Present when a nested drawer is being swiped.
 */
export declare const nestedDrawerSwiping = "data-nested-drawer-swiping";
/**
 * Present when the drawer is dismissed by swiping.
 */
export declare const swipeDismiss = "data-swipe-dismiss";
/**
 * Indicates the swipe direction.
 * @type {'up' | 'down' | 'left' | 'right'}
 */
export declare const swipeDirection = "data-swipe-direction";
/**
 * Present when the drawer is being swiped.
 */
export declare const swiping = "data-swiping";