import { FetchOptions } from '../utils/definitions'; export declare const createAbortController: () => AbortController; export declare const switchFetch: (fetchUrl: string, fetchOptions: FetchOptions, timeout?: number) => Promise; export declare function getJSON(url: string, timeout: number | undefined, options: FetchOptions): Promise;