declare const transaction_type: { name: string; type: string; }; declare const nonce: { name: string; }; declare const period: { name: string; type: string; }; declare const value: { name: string; type: string; }; declare const gas: { name: string; type: string; }; declare const tx_version: { name: string; type: string; value: number; }; declare const extensions: any[]; declare const data: { name: string; type: string; }; declare const signature: { name: string; type: string; }[]; declare const Tx: (any[] | { name: string; })[]; declare const transactions: (any[] | { name: string; })[]; declare const transaction_infos: ((any[] | { name: string; })[] | { name: string; type: string; })[]; export { transaction_type, nonce, period, value, gas, tx_version, extensions, data, signature, Tx, transactions, transaction_infos, };