declare class FetchError<Status = number, Data = unknown> extends Error {
    /** HTTP Status */
    status: Status;
    /** The content of the response. */
    data: Data;
    /** The Headers of the response. */
    headers: Headers;
    /** The raw `Response` object. */
    res: Response;
    constructor(status: Status, data: Data, headers: Headers, res: Response);
}
export default FetchError;
