export type FocusedPathState = Array; export type FocusedPathAction = { type: 'reset'; } | { type: 'set_focus'; value: FocusedPathState; } | { type: 'set_initial_focus'; } | { type: 'change_last_focus'; value: number; } | { type: 'add_focus'; value: number; } | { type: 'return_prev_focus'; }; export declare function focusedPathReducer(state: FocusedPathState, action: FocusedPathAction): FocusedPathState; //# sourceMappingURL=focusedPathReducer.d.ts.map