import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ months?: 1 | 2; variant?: "field" | "split"; label?: string; }, {}, "">; tags: string[]; argTypes: { months: { control: "select"; options: number[]; }; variant: { control: "select"; options: string[]; }; }; args: { months: 2; variant: "split"; label: string; }; }; export default meta; type Story = StoryObj; export declare const Booking: Story; export declare const SingleField: Story; export declare const OneMonth: Story;