import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ placeholder?: string; size?: "sm" | "md" | "lg"; disabled?: boolean; }, {}, "">; tags: string[]; argTypes: { size: { control: "select"; options: string[]; }; disabled: { control: "boolean"; }; }; args: { placeholder: string; size: "md"; disabled: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Disabled: Story;