import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ mode?: "unified" | "split"; wordDiff?: boolean; variant?: "code" | "text" | "large"; }, {}, "">; tags: string[]; argTypes: { mode: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; wordDiff: { control: "boolean"; }; }; args: { mode: "unified"; variant: "code"; wordDiff: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Split: Story; export declare const TextDiff: Story; export declare const LongFile: Story; export declare const NoWordDiff: Story;