import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ level?: 1 | 2 | 3 | 4; muted?: boolean; }, {}, "">; tags: string[]; argTypes: { level: { control: "select"; options: number[]; }; muted: { control: "boolean"; }; }; args: { level: 1; muted: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;