import { TDateFormatOptions, TDateSeparator, TLocaleType, Themes, WeekDayLabelSize } from "../Types";
export declare const SET_CONFIG: string;
export interface ConfigState {
    currentLocale: TLocaleType;
    minYear: number;
    maxYear: number;
    theme?: Themes;
    weekDayLabelSize?: WeekDayLabelSize;
    formatOptions?: TDateFormatOptions<TDateSeparator>;
}
export declare type ConfigValue = TLocaleType;
export interface ConfigAction {
    type: typeof SET_CONFIG;
    key: string;
    value: ConfigValue;
}
