import { Base, Type } from "./type";
import { TransactionType } from "./TransactionType";
/**
 * @hidden
 */
export declare class Transaction extends Base {
    static $t: Type;
    private _id;
    get id(): any;
    set id(a: any);
    private _transactionID;
    get transactionID(): number;
    set transactionID(a: number);
    private _type;
    get type(): TransactionType;
    set type(a: TransactionType);
    private _value;
    get value(): any;
    set value(a: any);
    private _error;
    get error(): string;
    set error(a: string);
}
