type HttpBuildQueryEncType = 'PHP_QUERY_RFC1738' | 'PHP_QUERY_RFC3986'; type QueryScalar = string | number | boolean | null; type QueryValue = QueryScalar | QueryObject | QueryValue[]; type QueryObject = { [key: string]: QueryValue; }; export declare function http_build_query(formdata: QueryObject | QueryValue[], numericPrefix?: string | number, argSeparator?: string, encType?: HttpBuildQueryEncType): string; export {};