import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "default" | "elevated" | "bordered" | "ghost" | "soft"; padding?: "none" | "sm" | "md" | "lg"; hoverable?: boolean; chrome?: boolean; layout?: "basic" | "toolbar" | "stats" | "action"; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; padding: { control: "select"; options: string[]; }; hoverable: { control: "boolean"; }; chrome: { control: "boolean"; }; layout: { control: "select"; options: string[]; }; }; args: { variant: "default"; padding: "md"; hoverable: false; chrome: true; layout: "basic"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Toolbar: Story; export declare const WithActions: Story; export declare const Stats: Story; export declare const Elevated: Story; export declare const Soft: Story; export declare const Ghost: Story; export declare const Hoverable: Story; export declare const NoChrome: Story;