/**
 * An error class representing an aborted operation.
 * @augments Error
 */
export declare class AbortError extends Error {
    constructor(message?: string);
}
/**
 * An error class representing an timeout operation.
 * @augments Error
 */
export declare class TimeoutError extends Error {
    constructor(message?: string);
}
