/** * Wraps native fetch with a promise that can timeout * * Executes AbortController if present on timed out request * * @hidden */ export declare const timedFetch: (url: string, requestInit: RequestInit, timeout: number, abortController?: AbortController | undefined) => Promise;