import type { StoreOps, TurnLoad, TurnLoadRequest } from "@vendoai/core"; /** A turn's opening reads as the calls they bundle, over whichever `StoreOps` * is asked. Two implementations answer with exactly this: the local backend, * whose reads are these ops and which has nothing to add to them, and the * hosted client on a mount below `STORE_WIRE_TURN_OPS`, where it IS the cheaper * fallback the pre-send check routes to. Composed rather than reimplemented so * the envelope cannot drift from the ops it bundles. */ export declare function turnLoadOverOps(ops: StoreOps, request: TurnLoadRequest): Promise; //# sourceMappingURL=turn.d.ts.map