import '../button/button'; import '../checkbox/checkbox'; import '../textfield/textfield'; import './dual-listbox'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { width: { control: string; }; height: { control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { width?: string; height?: string; } export declare const Default: Story; export declare const WithHeadings: Story; export declare const FormExample: Story;