import './alert'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { open: { control: string; }; closable: { control: string; }; duration: { control: string; }; color: { control: string; options: string[]; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { open?: boolean; closable?: boolean; duration: number; color: string; } export declare const Default: Story; export declare const PropFilled: Story;