import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "underline" | "pills"; fullWidth?: boolean; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; fullWidth: { control: "boolean"; }; }; args: { variant: "underline"; fullWidth: false; }; }; export default meta; type Story = StoryObj; export declare const Underline: Story; export declare const Pills: Story; export declare const FullWidth: Story;