import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "form" | "scroll" | "actions" | "confirm" | "minimal"; title?: string; description?: string; size?: import("./BottomSheet.svelte.ts").BottomSheetSize; maxHeight?: string; closeOnBackdrop?: boolean; closeOnEscape?: boolean; showHandle?: boolean; showClose?: boolean; blurBackdrop?: boolean; draggable?: boolean; pullToClose?: boolean; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; description: string; }; title: { control: "text"; }; description: { control: "text"; }; size: { control: "select"; options: string[]; }; maxHeight: { control: "text"; }; closeOnBackdrop: { control: "boolean"; }; closeOnEscape: { control: "boolean"; }; showHandle: { control: "boolean"; }; showClose: { control: "boolean"; }; blurBackdrop: { control: "boolean"; }; draggable: { control: "boolean"; }; pullToClose: { control: "boolean"; }; }; args: { example: "confirm"; title: string; description: string; size: "lg"; closeOnBackdrop: true; closeOnEscape: true; showHandle: true; showClose: true; blurBackdrop: true; draggable: true; pullToClose: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const ActionList: Story; export declare const Form: Story; export declare const LongContent: Story; export declare const Compact: Story; export declare const FullHeight: Story; export declare const Minimal: Story; export declare const NoHandle: Story; export declare const SolidBackdrop: Story; export declare const Persistent: Story;