/** * 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 swipe area is disabled. */ export declare const disabled = "data-disabled"; /** * 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";