import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ mode?: import("../Calendar/Calendar.svelte.ts").CalendarMode; months?: 1 | 2; variant?: "field" | "split"; label?: string; closeOnSelect?: boolean; placement?: "auto" | "bottom" | "bottom-start" | "bottom-end" | "top" | "top-start" | "top-end"; }, {}, "">; tags: string[]; argTypes: { mode: { control: "select"; options: string[]; }; months: { control: "select"; options: number[]; }; variant: { control: "select"; options: string[]; }; placement: { control: "select"; options: string[]; }; closeOnSelect: { control: "boolean"; }; }; args: { mode: "single"; months: 1; variant: "field"; placement: "auto"; label: string; closeOnSelect: true; }; }; export default meta; type Story = StoryObj; export declare const Single: Story; export declare const SingleDualMonths: Story; export declare const Multiple: Story; export declare const Range: Story; export declare const Booking: Story; export declare const KeepOpen: Story;