/** * A transaction could be classified in the following groups: * - Unconfirmed: The transaction reached the P2P network. At this point, it is not guaranteed that the transaction will be included in a block. * -Confirmed: The transaction is included in a block. * - Partial: The transaction requires to be cosigned by other transaction participants in order to be included in a block. */ export declare enum TransactionGroup { Unconfirmed = "unconfirmed", Confirmed = "confirmed", Partial = "partial" }