import { SearchParams } from 'src/models/interfaces/common/search-params'; /** * Implementation of the URLSearchParams interface. * To be used in conjunction with the TransportClient * while building requests. */ export declare class URLSearchParams implements URLSearchParams, SearchParams { private params; set(name: string, value: string): void; delete(name: string): void; get(name: string): string | undefined; has(name: string): boolean; isEmpty(): boolean; toString(): string; }