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