export declare enum ActionType { INITIATE_REQUEST = 0, REQUEST_COMPLETE = 1, UPDATE_RESULT = 2, DELTA_FORCED = 3 } export interface Action { type: ActionType; data?: any; error?: any; } export interface ResultState { loading: boolean; data?: any; error?: any; } export declare const InitialState: ResultState; export declare const reducer: (state: ResultState, action: Action) => ResultState;