export declare class ValidationError extends Error { constructor(message: string); } export declare class NetworkError extends Error { constructor(message: string); } export type SignerError = { title: string; description: string; }; export declare const MultisigErrorMap: { readonly INVALID_SIGNER: { readonly title: "Signer Wallet is Invalid"; readonly description: "This wallet is not a valid signing wallet for the Multisig. You can try again with a different wallet using the options below."; }; readonly INVALID_NETWORK: { readonly title: "Invalid network"; readonly description: "The signing wallet must be connected to the same network as the Multisig."; }; }; //# sourceMappingURL=errors.d.ts.map