export declare enum CollapsibleRootDataAttributes {
  /**
   * Present when the collapsible is open.
   */
  open = "data-open",
  /**
   * Present when the collapsible is closed.
   */
  closed = "data-closed",
  /**
   * Present when the collapsible begins animating in.
   */
  startingStyle = "data-starting-style",
  /**
   * Present when the collapsible is animating out.
   */
  endingStyle = "data-ending-style",
}