import type { ItemFlow, ScopeFlow } from "../../types/flow/plain"; import type { Position } from "../../types/state/position"; export declare function is(flow: ItemFlow): flow is ScopeFlow; export declare function into(flow: ScopeFlow, inputs: Record): Position | null; export declare function next(flow: ScopeFlow, position: Position, inputs: Record): Position | null; export declare function at(flow: ScopeFlow, position: Position): ItemFlow; export declare function find(flow: ScopeFlow, path: Position[]): ItemFlow; //# sourceMappingURL=scope.d.ts.map