export declare enum NavigationMenuContentDataAttributes {
  /**
   * Present when the popup is open.
   */
  open = "data-open",
  /**
   * Present when the popup is closed.
   */
  closed = "data-closed",
  /**
   * Present when the content is animating in.
   */
  startingStyle = "data-starting-style",
  /**
   * Present when the content is animating out.
   */
  endingStyle = "data-ending-style",
  /**
   * Which direction another trigger was activated from.
   */
  activationDirection = "data-activation-direction",
}