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