import { URLSearchParams } from "url"; export class QueryOptions { limit?: number = 10; sort?: any; page?: number; select?: any; upsert?: boolean = true; offline?: boolean = true; } export declare type Query = { [key: string]: any | any[]; } & { options?: QueryOptions & { [key: string]: any | any[]; }; uri?: string; params?: string | URLSearchParams | { [key: string]: any | any[]; } | null; }