import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ label?: string; placeholder?: string; value?: string; status?: "default" | "error" | "success" | "warning"; helperText?: string; disabled?: boolean; readonly?: boolean; required?: boolean; rows?: number; maxLength?: number; showCount?: boolean; autoResize?: boolean; }, {}, "">; tags: string[]; argTypes: { label: { control: "text"; description: string; }; placeholder: { control: "text"; description: string; }; status: { control: "select"; options: string[]; description: string; }; helperText: { control: "text"; description: string; }; disabled: { control: "boolean"; }; readonly: { control: "boolean"; }; required: { control: "boolean"; }; rows: { control: "number"; description: string; }; maxLength: { control: "number"; description: string; }; showCount: { control: "boolean"; description: string; }; autoResize: { control: "boolean"; description: string; }; }; args: { label: string; placeholder: string; status: "default"; helperText: string; disabled: false; readonly: false; required: false; rows: number; showCount: false; autoResize: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithCharacterCounter: Story; export declare const AutoResize: Story; export declare const WithError: Story;