import { AggregationParams, CountParams, FindParams, Mapper } from "@soapjs/soap"; export declare class RedisQueryFactory { private mapper?; constructor(mapper?: Mapper); createFindQuery(params: FindParams): string[]; createCountQuery(params: CountParams): string[]; createRemoveQuery(keys: string[]): string[]; createAggregationQuery(params: AggregationParams): string[]; }