import type { IFetcherPort } from '../../core/ports'; import type { RawRDAPResponse } from '../../shared/types'; export interface BrowserFetcherOptions { proxyUrl: string; timeout?: number; headers?: Record; } export declare class BrowserFetcher implements IFetcherPort { private readonly proxyUrl; private readonly timeout; private readonly headers; constructor(options: BrowserFetcherOptions); fetch(url: string): Promise; getProxyUrl(): string; } //# sourceMappingURL=BrowserFetcher.d.ts.map