/**
 * Present when the menu popup is open.
 */
export declare const open = "data-open";
/**
 * Present when the menu popup is closed.
 */
export declare const closed = "data-closed";
/**
 * Present when the anchor is hidden.
 */
export declare const anchorHidden = "data-anchor-hidden";
/**
 * Indicates which side the popup is positioned relative to the anchor.
 * @type {'top' | 'bottom' | 'left' | 'right' | 'inline-end' | 'inline-start'}
 */
export declare const side = "data-side";
/**
 * Indicates how the popup is aligned relative to the specified side.
 * @type {'start' | 'center' | 'end'}
 */
export declare const align = "data-align";