/** * FetchError is a wrapper around the HTTP error returned by * the method fetch. * It allows to throw an error with the status code. */ export declare class FetchError extends Error { status: number; constructor(status: number); }