import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ creatable?: boolean; label?: string; disabled?: boolean; compound?: boolean; menuItems?: boolean; }, {}, "">; tags: string[]; argTypes: { creatable: { control: "boolean"; }; disabled: { control: "boolean"; }; compound: { control: "boolean"; }; menuItems: { control: "boolean"; }; }; args: { creatable: false; label: string; disabled: false; compound: false; menuItems: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Creatable: Story; export declare const Disabled: Story; export declare const WithComboboxItem: Story; export declare const WithComboboxMenuItem: Story;