export declare enum EventType { /** * The event is triggered when the transaction is submitted and completed. * The transaction is submitted when it is sent to the relayer or the blockchain. * The transaction is completed when it is confirmed by the blockchain. * * status: "submitted" | "completed" * transactionHash: string of the transaction hash */ Transaction = "transaction", /** * The event is triggered when wallet sign message is requested and completed. * * status: "submitted" | "completed" * message: message to sign * signature: signature of the message (only available when status is "completed") */ Signature = "signature" }