/** * Types of menu button appearance. * @public */ export { ButtonAppearance, ButtonAppearanceVariant } from '../patterns/button/types'; /** * The options of where to position the menu relative to the menu button. */ export declare const MenuButtonPosition: { readonly above: "above"; readonly below: "below"; readonly auto: "auto"; }; export type MenuButtonPosition = (typeof MenuButtonPosition)[keyof typeof MenuButtonPosition]; /** * The type of the detail associated with the `toggle` and `beforetoggle` * events on the menu button. */ export interface MenuButtonToggleEventDetail { newState: boolean; oldState: boolean; }