import './icon-button'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { disabled: { control: string; }; icon: { control: string; }; size: { options: number[]; control: { type: 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 { disabled?: false; icon: string; size?: number; color?: string; } export declare const Default: Story;