import type { Reducer } from 'redux';
import { localReducer } from 'myst-cli';
import type { APIState } from './api/reducers.js';
import type { OxaState } from './oxa/reducers.js';
type LocalState = ReturnType<typeof localReducer>;
export interface RootState {
    api: APIState;
    local: LocalState;
    oxalink: OxaState;
}
export declare const rootReducer: Reducer<RootState>;
export {};
//# sourceMappingURL=reducers.d.ts.map