import './radio'; 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; }; global: { 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 { name: string; value: string; disabled?: boolean; checked?: boolean; global?: boolean; color: 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info'; } export declare const Default: Story;