import './switch'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { selected: { control: string; }; disabled: { 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 { selected: boolean; disabled: boolean; color: 'primary' | 'success' | 'warning' | 'info' | 'error' | undefined; } export declare const Default: Story; export declare const PropFilled: Story;