export interface Substate { ws?: boolean; initialHttpCall?: boolean; } interface State { [name: string]: Substate; } export declare const defautlSubState: () => { ws: boolean; initialHttpCall: boolean; }; export declare function fetchStatusReducer(state: State, action: { type: string; payload: any; }): State; export {};