type TValue = string | number | boolean | undefined | null; export type TParams = Record>; /** * @example stringifySearchParams({foo: '1', bar: [2, 3]}); */ export declare function stringifySearchParams(params: TParams): string; export {};