import './fab'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { mini: { control: string; }; exited: { control: string; }; disabled: { control: string; }; extended: { control: string; }; showIconAtEnd: { control: string; }; reducedTouchTarget: { control: string; }; icon: { control: string; }; label: { control: string; }; color: { options: (string | undefined)[]; control: { type: string; }; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { mini?: boolean; exited?: boolean; disabled?: boolean; extended?: boolean; showIconAtEnd?: boolean; reducedTouchTarget?: boolean; icon: string; label: string; color?: string; } export declare const Default: Story;