import { PlainObject } from "./models.mjs"; //#region src/query.d.ts /** * Convert a query string to a plain _(nested)_ object * * @param query Query string to convert * @returns Plain object representation of the query string */ declare function fromQuery(query: string): PlainObject; /** * Convert a plain _(nested)_ object to a query string * * @param parameters Plain object to convert * @returns Query string representation of the object */ declare function toQuery(parameters: PlainObject): string; //#endregion export { fromQuery, toQuery };