export type AbortablePromise = Promise & { abort: () => unknown; }; export type StringDict = { [key: string]: string; }; export declare function createFetch(mappings?: StringDict): (url: string, options: unknown) => AbortablePromise>;