import type { StoryObj } from "@storybook/react"; import DatePickerProvider from "../DatePickerProvider"; declare const meta: { title: string; component: typeof DatePickerProvider; parameters: { layout: string; deepControls: { enabled: boolean; }; }; argTypes: { config: { control: string; }; "config.locale": { control: string; options: string[]; }; "config.weekStartsOn": { control: string; options: string[]; }; "config.weekdayFormat": { control: string; options: string[]; }; "config.showOtherDays": { control: string; }; "config.otherDaysSelectable": { control: string; }; "config.dayFormat": { control: string; options: string[]; }; "config.yearRangeFrom": { control: string; }; "config.yearRangeTo": { control: string; }; "config.minDate": { control: string; }; "config.maxDate": { control: string; }; "config.weekends": { control: string; options: string[]; }; "config.weekendSelectable": { control: string; }; "config.holidaySelectable": { control: string; }; "config.allowBackwardRange": { control: string; }; }; }; export default meta; type Story = StoryObj; export declare const Example1: Story; export declare const Example2: Story; export declare const Example3: Story; export declare const Example4: Story; export declare const Example5: Story;