import type { Flow } from "../types/flow/plain"; import type { OnYield, OnReturn } from "../types/handlers/plain"; import type { State } from "../types/state/state"; export declare function initState(options: { flow: Flow; onYield: OnYield; inputs: Record; history: boolean; }): State; export declare function nextState(options: { flow: Flow; onYield: OnYield; onReturn: OnReturn; state: State; fields: Record; history: boolean; }): State; export declare function prevState(options: { flow: Flow; onYield: OnYield; state: State; fields: Record; }): State; export declare function jumpState(options: { flow: Flow; state: State; fields: Record; history: boolean; id: unknown; }): State; //# sourceMappingURL=navigate.d.ts.map