import { StoryObj } from '@storybook/react'; import { default as Calendar } from '../Calendar'; declare const meta: { component: typeof Calendar; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { currentInViewhandler: { description: string; }; startWeekOnDay: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; externalMonthsWithDays: { description: string; control: { type: "object"; }; }; startCalendarDate: { description: string; control: { type: "object"; }; defaultValue: { summary: { year: number; month: number; }; }; }; endCalendarDate: { description: string; control: { type: "object"; }; defaultValue: { summary: { year: number; month: number; }; }; }; themeType: { description: string; control: { type: "select"; }; options: ("primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent" | undefined)[]; table: { defaultValue: { summary: "primary" | "accent" | "secondary" | "info" | "success" | "warning" | "error" | "transparent"; }; }; }; layer: { description: string; control: { type: "range"; min: number; max: number; }; table: { defaultValue: { summary: string; }; }; }; selectedYearMonth: { description: string; control: { type: "object"; }; table: { defaultValue: { summary: string; }; }; }; rangeCalendar: { description: string; type: { name: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; handleDates: { description: string; }; selectFromTo: { description: string; control: { type: "radio"; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;