import './menu'; import type { Corner, MenuCorner } from '@material/mwc-menu'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { open: { control: string; }; corner: { control: string; options: string[]; }; menuCorner: { control: string; options: string[]; }; quick: { control: string; }; absolute: { control: string; }; fixed: { control: string; }; x: { control: string; min: number; max: number; step: number; }; y: { control: string; min: number; max: number; step: number; }; forceGroupSelection: { control: string; }; defaultFocus: { control: string; options: string[]; }; fullwidth: { control: string; }; stayOpenOnBodyClick: { control: string; }; wrapFocus: { control: string; }; innerAriaLabel: { control: string; }; innerRole: { control: string; options: string[]; }; multi: { control: string; }; activatable: { control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { open?: boolean; corner: Corner; menuCorner: MenuCorner; quick?: boolean; absolute?: boolean; fixed?: boolean; x: number; y: number; forceGroupSelection?: boolean; defaultFocus: 'NONE' | 'LIST_ROOT' | 'FIRST_ITEM' | 'LAST_ITEM'; fullwidth?: boolean; stayOpenOnBodyClick?: boolean; wrapFocus?: boolean; innerAriaLabel: string; innerRole: 'menu' | 'listbox'; multi?: boolean; activatable?: boolean; } export declare const Default: Story; export declare const PropFilled: Story;