import { Provider } from '@meer-js/providers'; import { Signer } from '@meer-js/signers'; export declare enum MultisigDeleteRequestRejectionError { CANNOT_DESERIALIZE_STATE = "Cannot deserialize the contract state", MULTISIG_NOT_INITIALIZED = "Smart contract panicked: Multisig contract should be initialized before usage", NO_SUCH_REQUEST = "Smart contract panicked: panicked at 'No such request: either wrong number or already confirmed'", REQUEST_COOLDOWN_ERROR = "Request cannot be deleted immediately after creation.", METHOD_NOT_FOUND = "Contract method is not found" } export declare enum MultisigStateStatus { INVALID_STATE = 0, STATE_NOT_INITIALIZED = 1, VALID_STATE = 2, UNKNOWN_STATE = 3 } export interface Connection { readonly networkId: string; readonly provider: Provider; readonly signer: Signer; readonly jsvmAccountId: string; getConnection(): Connection; } //# sourceMappingURL=types.d.ts.map