import { Action } from './actions'; import { State } from './types'; export declare const INITIAL_STATE: State; export default function reducer(state: State, action: Action): State;