import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "inline" | "compact"; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; }; args: { variant: "inline"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Compact: Story;