export declare enum DrawerSwipeAreaDataAttributes {
  /**
   * Present when the drawer is open.
   */
  open = "data-open",
  /**
   * Present when the drawer is closed.
   */
  closed = "data-closed",
  /**
   * Present when the swipe area is disabled.
   */
  disabled = "data-disabled",
  /**
   * Indicates the swipe direction.
   * @type {'up' | 'down' | 'left' | 'right'}
   */
  swipeDirection = "data-swipe-direction",
  /**
   * Present when the drawer is being swiped.
   */
  swiping = "data-swiping",
}