import { IndentPrinter } from '../console/IndentPrinter'; import { Plan, ExecutionType } from './QueryPlan'; type QueryParameters = any; interface FormatPlanOptions { plan: Plan; prefix?: string; printer?: IndentPrinter; parameters?: QueryParameters; executionType?: ExecutionType; } export declare function planToDebugString(opts: FormatPlanOptions): void; export {};