import { TransferTrxOffchain } from '../model/request';
/**
 * Send Tron transaction from Tatum Ledger account to the blockchain. This method broadcasts signed transaction to the blockchain.
 * This operation is irreversible.
 * @param testnet mainnet or testnet version
 * @param body content of the transaction to broadcast
 * @returns transaction id of the transaction in the blockchain or id of the withdrawal, if it was not cancelled automatically
 */
export declare const sendTronOffchainTransaction: (testnet: boolean, body: TransferTrxOffchain) => Promise<import("..").SignatureId | {
    id: string;
    txId: string;
    completed: boolean;
} | {
    id: string;
}>;
