import type { StoryObj } from "@storybook/react";
import DatePickerProvider from "../DatePickerProvider";
declare const meta: {
    title: string;
    component: typeof DatePickerProvider;
    parameters: {
        layout: string;
        deepControls: {
            enabled: boolean;
        };
    };
    tags: string[];
    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.allowBackwardRange": {
            control: string;
        };
    };
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const SingleSelection: Story;
export declare const RangeSelection: Story;
export declare const Persian: Story;
export declare const Islamic: Story;
export declare const GregoryInFa_IR: Story;
export declare const PersianInEn_US: Story;
export declare const ControlledComponent: Story;
