import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ mode?: import("./Calendar.svelte.ts").CalendarMode; months?: 1 | 2; showMinMax?: boolean; showDisabledDates?: boolean; showEnabledOnly?: boolean; showDots?: boolean; }, {}, "">; tags: string[]; argTypes: { mode: { control: "select"; options: string[]; }; months: { control: "select"; options: number[]; }; showMinMax: { control: "boolean"; }; showDisabledDates: { control: "boolean"; }; showEnabledOnly: { control: "boolean"; }; showDots: { control: "boolean"; }; }; args: { mode: "single"; months: 1; showMinMax: false; showDisabledDates: false; showEnabledOnly: false; showDots: false; }; }; export default meta; type Story = StoryObj; export declare const Single: Story; export declare const DualMonths: Story; export declare const Multiple: Story; export declare const Range: Story; export declare const RangeDual: Story; export declare const MinMax: Story; export declare const DisabledDates: Story; export declare const EnabledOnly: Story; export declare const WithDots: Story; export declare const RangeWithDots: Story; export declare const MultipleWithDisabled: Story; export declare const BookingExample: Story;