declare const AbortError_base: any; /** * Error used when a promise rejects because an AbortController aborted. * * @class AbortError * @augments DOMException * @category Promises */ export default class AbortError extends AbortError_base { [x: string]: any; constructor(message: any); } export {};