import { QueryIR } from '../types.js';
export declare class MongoCompiler {
    compileFind(ir: QueryIR): {
        filter: Record<string, any>;
        options: Record<string, any>;
    };
    compileUpdate(data: Record<string, any>): Record<string, any>;
    private compileWhere;
    private compileClause;
}
