export interface ArcadeFetchErrorDescription {
    statusText: string;
    extended: string;
}
/**
 * The error thrown when the fetch() method of the Sprite class encounters an error.
 */
export declare class ArcadeFetchError extends Error {
    detail: string;
    error: string;
    exception: string;
    constructor(response: Response);
}
