import './textarea'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { rows: { control: string; }; cols: { control: string; }; value: { control: string; }; type: { control: string; options: string[]; }; label: { control: string; }; placeholder: { control: string; }; icon: { control: string; }; iconTrailing: { control: string; }; disabled: { control: string; }; charCounter: { control: string; }; outlined: { control: string; }; helper: { control: string; }; helperPersistent: { control: string; }; required: { control: string; }; maxLength: { control: string; }; validationMessage: { control: string; }; validateOnInitialRender: { control: string; }; name: { control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { rows: number; cols: number; value: string; type: string; label: string; placeholder: string; icon: string; iconTrailing: string; disabled?: boolean; charCounter?: boolean; outlined?: boolean; helper: string; helperPersistent?: boolean; required?: boolean; maxLength: number; validationMessage: string; validateOnInitialRender?: boolean; name: string; } export declare const Default: Story;