/** * WARP graph initialization — opens the graft-ast graph backed by * the repo's own .git directory. * * Sole construction adapter. After this, git-warp types flow directly. */ import WarpApp from "@git-stunts/git-warp"; export declare const GRAPH_NAME = "graft-ast"; export declare const DEFAULT_WARP_CHECKPOINT_EVERY = 128; export interface OpenWarpOptions { readonly cwd: string; readonly writerId?: string; readonly checkpointEvery?: number; } export declare function openWarp(options: OpenWarpOptions): Promise; //# sourceMappingURL=open.d.ts.map