export default class FetchResponse { private response; private jsonBody; constructor(response: Response); status(): number; successful(): boolean; unauthorized(): boolean; clientError(): boolean; serverError(): boolean; json(key?: null): any; loadJson(): Promise; getMessage(): string; getErrors(): string; }