import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ label?: string; helperText?: string; accept?: string; variant?: "multiple" | "single" | "avatar"; view?: "list" | "grid"; layout?: "horizontal" | "vertical" | "compact"; showViewToggle?: boolean; maxSizeMb?: number; disabled?: boolean; src?: string; srcName?: string; }, {}, "">; tags: string[]; argTypes: { label: { control: "text"; }; helperText: { control: "text"; }; accept: { control: "text"; }; variant: { control: "select"; options: string[]; }; view: { control: "select"; options: string[]; }; layout: { control: "select"; options: string[]; }; showViewToggle: { control: "boolean"; }; maxSizeMb: { control: "number"; }; disabled: { control: "boolean"; }; }; args: { label: string; helperText: string; accept: string; variant: "multiple"; view: "list"; layout: "horizontal"; showViewToggle: true; maxSizeMb: number; disabled: false; }; }; export default meta; type Story = StoryObj; export declare const Multiple: Story; export declare const GridView: Story; export declare const VerticalSidebar: Story; export declare const Compact: Story; export declare const SingleFile: Story; export declare const Avatar: Story; export declare const Disabled: Story;