import { DatePickerSelectInput, GeneralDateUtil } from '../../shared/types';
export declare type DatePickerDate = GeneralDateUtil;
export interface DatePickerLanguageStrings {
    readonly monthNames: string[];
    readonly dayHeaderNames: string[];
    readonly action: string;
}
export interface DatePickerStrings {
    readonly fa: DatePickerLanguageStrings;
    readonly en: DatePickerLanguageStrings;
}
export declare type SelectDate = () => void;
export declare type SetDatePickerSelectInput = (date: DatePickerSelectInput) => void;
