import './checkbox'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { name: { control: string; }; value: { control: string; }; disabled: { control: string; }; checked: { control: string; }; indeterminate: { 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 { name: string; value: string; disabled?: boolean; checked?: boolean; indeterminate?: boolean; color?: string; } export declare const Default: Story;