/** * SQL Mode 2 — Explain * * Formats execution plans for developer inspection. */ import type { ExplainPlan, ExecutionPlan } from './types.js'; /** * Build an explain plan from an execution plan (without actually executing). */ export declare function buildExplainPlan(plan: ExecutionPlan): ExplainPlan; //# sourceMappingURL=explain.d.ts.map