import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ columns?: 1 | 2 | 3; bordered?: boolean; size?: "sm" | "md"; title?: string; }, {}, "">; tags: string[]; argTypes: { columns: { control: "select"; options: number[]; }; bordered: { control: "boolean"; }; size: { control: "select"; options: string[]; }; title: { control: "text"; }; }; args: { columns: 2; bordered: true; size: "md"; title: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const ThreeColumns: Story; export declare const Compact: Story;