export declare class ErrorWithCode extends Error {
    code?: number;
    constructor(message?: string, code?: number);
}
export declare const Deny: () => ErrorWithCode;
export declare const Unauthorized: () => ErrorWithCode;
export declare const UnsupportedMethod: () => ErrorWithCode;
export declare const Disconnected: () => ErrorWithCode;
export declare const ChainDisconnected: () => ErrorWithCode;
export declare const UnrecognizedChainID: () => ErrorWithCode;
//# sourceMappingURL=errors.d.ts.map