import '@material/mwc-top-app-bar'; import './drawer'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { open: { control: string; }; hasHeader: { control: string; }; type: { control: string; options: string[]; }; width: { control: string; }; height: { control: string; }; placement: { control: string; options: string[]; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { open?: boolean; hasHeader?: boolean; type: '' | 'dismissible' | 'modal'; width: string | undefined; height: string | undefined; placement: 'right' | 'left'; } export declare const Demo: Story;