export declare enum DrawerViewportDataAttributes {
  /**
   * Present when the drawer is open.
   */
  open = "data-open",
  /**
   * Present when the drawer is closed.
   */
  closed = "data-closed",
  /**
   * Present when the drawer is animating in.
   */
  startingStyle = "data-starting-style",
  /**
   * Present when the drawer is animating out.
   */
  endingStyle = "data-ending-style",
  /**
   * Present when the drawer is nested within another drawer.
   */
  nested = "data-nested",
}