import { IBoundQuery, IPreparedQuery, QueryDescription, QueryResult } from '../interfaces';
export declare class InterceptedPreparedQuery implements IPreparedQuery, IBoundQuery {
    private command;
    private result;
    constructor(command: string, result: any[]);
    describe(): QueryDescription;
    bind(args?: any[]): IBoundQuery;
    iterate(): IterableIterator<QueryResult>;
    executeAll(): QueryResult;
}
//# sourceMappingURL=prepared-intercepted.d.ts.map