/**
 * Error thrown when a response.body is not found
 */
export declare class BodyNotFoundError extends Error {
    readonly url: string;
    /**
     * Create a BodyNotFoundError
     * @param url URL of the request
     */
    constructor(url: string);
}
