import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ leftTitle?: string; rightTitle?: string; searchable?: boolean; disabled?: boolean; }, {}, "">; tags: string[]; argTypes: { leftTitle: { control: "text"; }; rightTitle: { control: "text"; }; searchable: { control: "boolean"; }; disabled: { control: "boolean"; }; }; args: { leftTitle: string; rightTitle: string; searchable: false; disabled: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Searchable: Story; export declare const Disabled: Story;