import { Incident } from "incident"; export declare namespace ProxyError { type Name = "ProxyError"; const name: Name; interface Data { html: string; } type Cause = undefined; } export declare type ProxyError = Incident; export declare namespace ProxyError { type Type = ProxyError; function format({ html }: Data): string; function create(html: string): ProxyError; }