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