import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "joined" | "soft" | "plain" | "filters" | "sizes"; variant?: "joined" | "soft" | "plain"; size?: "sm" | "md" | "lg"; loading?: boolean; showButton?: boolean; placeholder?: string; buttonLabel?: string; shortcut?: string; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; loading: { control: "boolean"; }; showButton: { control: "boolean"; }; }; args: { example: "joined"; variant: "joined"; size: "md"; loading: false; showButton: true; placeholder: string; buttonLabel: string; shortcut: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Soft: Story; export declare const Plain: Story; export declare const WithFilters: Story; export declare const Sizes: Story; export declare const Loading: Story;