import { Plan, ExecutionType } from './QueryPlan'; import { Stream } from '@andyfischer/streams'; export type QueryParameters = Map; export declare function executePlan(plan: Plan, parameters: QueryParameters, output: Stream, executionType?: ExecutionType): void;