import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ size?: "sm" | "md" | "lg"; sticky?: boolean; variant?: "underline" | "pills" | "plain"; example?: "marketing" | "app" | "centered" | "docs" | "compact"; bordered?: boolean; blur?: boolean; maxWidth?: "full" | "5xl" | "6xl" | "7xl"; centerLinks?: boolean; }, {}, "">; tags: string[]; parameters: { layout: string; }; argTypes: { size: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; example: { control: "select"; options: string[]; }; sticky: { control: "boolean"; }; blur: { control: "boolean"; }; bordered: { control: "boolean"; }; centerLinks: { control: "boolean"; }; maxWidth: { control: "select"; options: string[]; }; }; args: { size: "md"; sticky: false; variant: "underline"; example: "marketing"; bordered: true; blur: true; maxWidth: "7xl"; centerLinks: false; }; }; export default meta; type Story = StoryObj; export declare const Marketing: Story; export declare const AppShell: Story; export declare const Centered: Story; export declare const Docs: Story; export declare const Compact: Story; export declare const Large: Story;