GetTxResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): GetTxResponse;
    encode(message: GetTxResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: GetTxResponseAmino): GetTxResponse;
    fromAminoMsg(object: GetTxResponseAminoMsg): GetTxResponse;
    fromPartial(object: {
        tx?: {
            authInfo?: {
                fee?: {
                    amount?: {
                        amount?: ...;
                        denom?: ...;
                    }[];
                    gasLimit?: bigint;
                    granter?: string;
                    payer?: string;
                };
                signerInfos?: {
                    modeInfo?: {
                        multi?: ...;
                        single?: ...;
                    };
                    publicKey?: {
                        $typeUrl?: ...;
                        typeUrl?: ...;
                        value?: ...;
                    };
                    sequence?: bigint;
                }[];
            };
            body?: {
                extensionOptions?: {
                    $typeUrl?: string;
                    typeUrl?: string;
                    value?: Uint8Array;
                }[];
                memo?: string;
                messages?: {
                    $typeUrl?: string;
                    typeUrl?: string;
                    value?: Uint8Array;
                }[];
                nonCriticalExtensionOptions?: {
                    $typeUrl?: string;
                    typeUrl?: string;
                    value?: Uint8Array;
                }[];
                timeoutHeight?: bigint;
            };
            signatures?: Uint8Array[];
        };
        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;
        };
    }): GetTxResponse;
    fromProtoMsg(message: GetTxResponseProtoMsg): GetTxResponse;
    toAmino(message: GetTxResponse): GetTxResponseAmino;
    toAminoMsg(message: GetTxResponse): GetTxResponseAminoMsg;
    toProto(message: GetTxResponse): Uint8Array;
    toProtoMsg(message: GetTxResponse): GetTxResponseProtoMsg;
}