/** * Converts an object into a URL-encoded query string. * @param {Record} object - The object to be converted into a query string. * @returns {string} The URL-encoded query string. */ export declare function stringify(object: Record): string; /** * Parses query parameters into the appropriate types. * @param {Record} queryParams - The query parameters to parse. * @returns {T} The parsed query parameters. * @template T */ export declare function parseQueryParams(queryParams: Record): T;