import { UnaryOperationType, UnaryOperation } from './unaryFunctions';
export interface UnaryOperation {
    operation: UnaryOperationType;
    json_pointers: string | string[];
    arguments?: any;
}
export interface QueryModel {
    model: string;
    set: Array<UnaryOperation>;
}
export declare function generateQueryRequest(queryRequest: QueryModel): string;
export default generateQueryRequest;
