export declare class SundayError extends Error { url: string; status: number; statusText: string; headers: Headers; body: unknown; responseExample: string; constructor(message: string, url: string, status: number, statusText: string, headers: Headers, body: unknown, responseExample: string); static fromResponse(message: string, response: Response): Promise; }