/**
 * transaction info
 * @class TransactionInfo
 * @property {string?} from the from address
 * @property {string?} to the to address
 * @property {string?} data the data
 */
export declare class TransactionInfo {
    from?: string;
    to?: string;
    data?: string;
}
