export declare type AggregateQuery<DTO> = {
    count?: (keyof DTO)[];
    sum?: (keyof DTO)[];
    avg?: (keyof DTO)[];
    max?: (keyof DTO)[];
    min?: (keyof DTO)[];
    groupBy?: (keyof DTO)[];
};
