declare const reducers: { readonly transfer: { getInitialState(): import('../transfer/reducer').ITransferState; getReducer(): Record import('../transfer/reducer').ITransferState>; }; readonly aggregator: { getInitialState(): import('../aggregator/reducer').IAggregatorState; getReducer(): Record import('../aggregator/reducer').IAggregatorState>; }; }; type Reducers = typeof reducers; type Namespace = keyof Reducers; type State = { [K in Namespace]: ReturnType; }; export type AppState = ReturnType; export declare function getInitialState(): State; export declare function getReducers(): (state: AppState, action?: any) => { transfer: import('../transfer/reducer').ITransferState; aggregator: import('../aggregator/reducer').IAggregatorState; }; export {};