import type WarpApp from "@git-stunts/git-warp"; import type { Lens, Observer, ObserverOptions, PatchBuilderV2 } from "@git-stunts/git-warp"; export interface WarpContext { readonly app: WarpApp; readonly strandId: string | null; } export declare function patchGraph(ctx: WarpContext, build: (patch: PatchBuilderV2) => void | Promise): Promise; export declare function observeGraph(ctx: WarpContext, lens: Lens, options?: ObserverOptions): Promise; export declare function materializeGraph(ctx: WarpContext): Promise; //# sourceMappingURL=context.d.ts.map