import { Type } from "./type";
/**
 * An enumeration for the different pending states a transaction can be in.
 */
export declare enum TransactionPendingState {
    /**
     * The transaction will stay pending.
     */
    Pending = 0,
    /**
     * The transaction is to be accepted.
     */
    Accept = 1,
    /**
     * The transaction is to be rejected.
     */
    Reject = 2
}
/**
 * @hidden
 */
export declare let TransactionPendingState_$type: Type;
