import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ size?: import("./Dock.svelte.ts").DockSize; }, {}, "">; tags: string[]; argTypes: { size: { control: "select"; options: string[]; }; }; args: { size: "sm"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Mini: Story; export declare const Medium: Story;