import './icon'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { size: { options: number[]; control: { type: string; }; }; icon: { control: { type: string; }; }; color: { options: (string | undefined)[]; control: { type: string; }; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { icon: string; size?: number; color?: string; } export declare const icons: Story;