import type { ItemFlow, SwitchFlow } from "../../types/flow/plain"; import type { Position } from "../../types/state/position"; export declare function is(flow: ItemFlow): flow is SwitchFlow; export declare function into(flow: SwitchFlow, inputs: Record): Position | null; export declare function next(flow: SwitchFlow, position: Position): Position | null; export declare function jump(flow: SwitchFlow, id: unknown): Position[] | null; export declare function at(flow: SwitchFlow, position: Position): ItemFlow; //# sourceMappingURL=nest.switch.d.ts.map