import { CustomError } from "../customError"; import { ASNValue } from "./types"; export declare class UnexpectedArgumentTypeError extends CustomError { constructor(typedArg: ASNValue); } export declare class MissingGtxException extends CustomError { constructor(); } export declare class AlreadySignedTransactionException extends CustomError { constructor(operation: string); } export declare class NumberOfSignersAndSignaturesException extends CustomError { constructor(); } export declare class MissingSignerException extends CustomError { constructor(); }