BroadcastTxResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): BroadcastTxResponse;
    encode(message: BroadcastTxResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: BroadcastTxResponseAmino): BroadcastTxResponse;
    fromAminoMsg(object: BroadcastTxResponseAminoMsg): BroadcastTxResponse;
    fromPartial(object: {
        txResponse?: {
            code?: number;
            codespace?: string;
            data?: string;
            events?: {
                attributes?: {
                    index?: (...) | (...) | (...);
                    key?: (...) | (...);
                    value?: (...) | (...);
                }[];
                type?: string;
            }[];
            gasUsed?: bigint;
            gasWanted?: bigint;
            height?: bigint;
            info?: string;
            logs?: {
                events?: {
                    attributes?: (...) | (...);
                    type?: (...) | (...);
                }[];
                log?: string;
                msgIndex?: number;
            }[];
            rawLog?: string;
            timestamp?: string;
            tx?: {
                $typeUrl?: string;
                typeUrl?: string;
                value?: Uint8Array;
            };
            txhash?: string;
        };
    }): BroadcastTxResponse;
    fromProtoMsg(message: BroadcastTxResponseProtoMsg): BroadcastTxResponse;
    toAmino(message: BroadcastTxResponse): BroadcastTxResponseAmino;
    toAminoMsg(message: BroadcastTxResponse): BroadcastTxResponseAminoMsg;
    toProto(message: BroadcastTxResponse): Uint8Array;
    toProtoMsg(message: BroadcastTxResponse): BroadcastTxResponseProtoMsg;
}