import { SerializableInterface } from '../serializer'; export interface Filter extends SerializableInterface { } export declare class Filter { skip: number; limit: number; orderBy?: string[]; getSort(): Array<[string, 1 | -1]>; getSortForAggregation(): { [property: string]: 1 | -1; }; toQuery(): any; } //# sourceMappingURL=filter.d.ts.map