import type { EventSource, EventSourceCapabilities, EventSourceInitDict, LDLogger, Options, Requests, Response } from '@launchdarkly/js-client-sdk-common';
export default class PlatformRequests implements Requests {
    private readonly _logger;
    constructor(_logger: LDLogger);
    createEventSource(url: string, eventSourceInitDict: EventSourceInitDict): EventSource;
    getEventSourceCapabilities(): EventSourceCapabilities;
    fetch(url: string, options?: Options): Promise<Response>;
}
//# sourceMappingURL=PlatformRequests.d.ts.map