/// <reference types="react" />
declare const _default: {
    title: string;
    component: ({ label, view, openFirst, isDisable, dateFormate }: {
        label: string;
        view: any;
        openFirst: any;
        isDisable: boolean;
        dateFormate: string;
    }) => JSX.Element;
    argTypes: {
        label: {
            name: string;
            control: {
                type: string;
            };
            defaultValue: string;
        };
        dateFormate: {
            name: string;
            control: {
                type: string;
                options: string[];
            };
            defaultValue: string;
        };
        view: {
            name: string;
            control: {
                type: string;
                options: string[];
            };
            defaultValue: string;
        };
        openFirst: {
            name: string;
            control: {
                type: string;
                options: string[];
            };
            defaultValue: string;
        };
        isDisable: {
            name: string;
            control: {
                type: string;
                options: boolean[];
            };
            defaultValue: boolean;
        };
    };
};
export default _default;
export declare const BasicDatePicker: any;
