TxProof: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): TxProof;
    encode(message: TxProof, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: TxProofAmino): TxProof;
    fromAminoMsg(object: TxProofAminoMsg): TxProof;
    fromPartial(object: {
        data?: Uint8Array;
        proof?: {
            aunts?: Uint8Array[];
            index?: bigint;
            leafHash?: Uint8Array;
            total?: bigint;
        };
        rootHash?: Uint8Array;
    }): TxProof;
    fromProtoMsg(message: TxProofProtoMsg): TxProof;
    toAmino(message: TxProof): TxProofAmino;
    toProto(message: TxProof): Uint8Array;
    toProtoMsg(message: TxProof): TxProofProtoMsg;
}