import { ConfigAction, ConfigState } from "./ConfigTypes"; export declare const initialState: (minYear?: number | undefined, maxYear?: number | undefined) => ConfigState; declare const ConfigReducer: (state: ConfigState | undefined, action: ConfigAction) => ConfigState; export default ConfigReducer;