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; export interface RootState { api: APIState; local: LocalState; oxalink: OxaState; } export declare const rootReducer: Reducer; export {}; //# sourceMappingURL=reducers.d.ts.map