export interface LtSendTxRequest { tx_type: number; tx_info: string; price_protection?: boolean; } export interface LtSendTxResponse { code: number; message: string; tx_hash: string; predicted_execution_time_ms?: number; volume_quota_remaining?: number; } export interface LtSendTxBatchRequest { tx_types: string; tx_infos: string; } export interface LtSendTxBatchResponse { code: number; message: string; tx_hash: string[]; predicted_execution_time_ms?: number; volume_quota_remaining?: number; } export interface LtFastwithdrawInfoResponse { code: number; message?: string; to_account_index: number; withdraw_limit: string; max_withdrawal_amount: string; } export interface LtFastwithdrawResponse { code: number; message?: string; } export interface LtChangeAccountTierResponse { code: number; message?: string; } //# sourceMappingURL=submit.d.ts.map