import { Abortable } from '../../../abortable/abortable.class'; import { AsyncTask } from '../../async-task.class'; export type IAsyncFetchRequestInit = Omit | undefined; export declare function asyncFetch(input: RequestInfo | URL, init: IAsyncFetchRequestInit, abortable: Abortable): AsyncTask;