import { localeType } from "../Types"; export declare const SET_CONFIG: string; export interface ConfigState { currentLocale: localeType; minYear: number; maxYear: number; } export declare type ConfigValue = localeType; export interface ConfigAction { type: typeof SET_CONFIG; key: string; value: ConfigValue; }