import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ title?: string; description?: string; size?: "sm" | "md" | "lg"; sticky?: boolean; loading?: boolean; variant?: "default" | "with-back" | "minimal" | "detail" | "loading" | "tabs" | "sticky"; }, {}, "">; tags: string[]; argTypes: { title: { control: "text"; }; description: { control: "text"; }; size: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; }; args: { variant: "default"; size: "md"; title: string; description: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithBack: Story; export declare const Minimal: Story; export declare const Detail: Story; export declare const Loading: Story; export declare const WithTabs: Story; export declare const Sticky: Story;