/** * `dql verify` — prove the on-disk manifest is reproducible from source. * * Recompiles the manifest in-memory and diffs it against `dql-manifest.json`. * Returns a non-zero exit code (and prints a diff summary) on drift. Used by * CI to ensure programmable artifacts (Apps, dashboards, blocks, RLS rules, * schedules) stay in lock-step with their source files. */ import type { CLIFlags } from '../args.js'; export declare function runVerify(pathArg: string | null, rest: string[], flags: CLIFlags): Promise; //# sourceMappingURL=verify.d.ts.map