export declare type Options = {
arrayPrefix?: string;
};
export declare type Param = string | number | boolean | object | Array;
export declare type Params = Array | Record;
declare function objectToQueryString(params: Params, queryString?: string, options?: Options): string;
export default objectToQueryString;