import { StoryObj } from '@storybook/react'; import { default as FancyDatePicker } from '../FancyDatePicker'; declare const meta: { component: typeof FancyDatePicker; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { startWeekOn: { description: string; control: { type: "select"; }; table: { defaultValue: { summary: string; }; }; }; externalData: { description: string; control: { type: "object"; }; }; dateSelectHandler: { description: string; control: { type: "object"; }; }; monthYearInView: { description: string; control: { type: "object"; }; table: { defaultValue: { summary: string; }; }; }; disabledDateSetting: { description: string; control: { type: "object"; }; }; yearSelector: { description: string; control: { type: "object"; }; }; 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; }; }; }; rangeCalendar: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;