import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ size?: "sm" | "md" | "lg"; framed?: boolean; variant?: "editor" | "docs" | "compact"; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; framed: { control: "boolean"; }; }; args: { variant: "editor"; size: "md"; framed: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Documentation: Story; export declare const Compact: Story; export declare const Large: Story; export declare const Unframed: Story;