import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ collapsed?: boolean; defaultExpandDepth?: number; showToolbar?: boolean; variant?: "api" | "nested" | "array" | "string" | "minimal"; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; collapsed: { control: "boolean"; }; defaultExpandDepth: { control: { type: "number"; min: number; max: number; }; }; showToolbar: { control: "boolean"; }; }; args: { variant: "api"; collapsed: false; defaultExpandDepth: number; showToolbar: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Nested: Story; export declare const ArrayRoot: Story; export declare const FromString: Story; export declare const Collapsed: Story; export declare const Expanded: Story; export declare const Minimal: Story;