import './form-field'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { label: { control: string; }; alignEnd: { control: string; }; spaceBetween: { control: string; }; nowrap: { control: string; }; input: { control: string; options: string[]; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { label: string; alignEnd: boolean; spaceBetween: boolean; nowrap: boolean; input: 'checkbox' | 'radio' | 'switch'; } export declare const PropFilledCheckbox: Story; export declare const PropFilledRadio: Story; export declare const PropFilledSwitch: Story;