import { type NetworkContext } from "./types/Context.js"; export interface SendTransactionArgs { transaction_header: string; transaction_body: string; signatures: string[]; } interface PushedTransactionResponse { error?: any; message?: string; [key: string]: any; } /** * Send a serialized transaction to the blockchain. * @param args Object containing transaction_header, transaction_body, signatures * @param network Network context with fetch and rpc_url */ export declare function send_transaction_rpc(args: SendTransactionArgs, network: NetworkContext): Promise; export {};