import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ height?: number; disabled?: boolean; penColor?: "ink" | "brand" | "blue"; variant?: "default" | "compact" | "preview"; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; height: { control: { type: "number"; min: number; max: number; }; }; disabled: { control: "boolean"; }; penColor: { control: "select"; options: string[]; }; }; args: { variant: "default"; height: number; disabled: false; penColor: "ink"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithPreview: Story; export declare const Compact: Story; export declare const BrandPen: Story; export declare const Disabled: Story;