/**
 * An AnimBlendTree that calculates normalized weight values based on the total weight.
 *
 * @category Animation
 */
export class AnimBlendTreeDirect extends AnimBlendTree {
    calculateWeights(): void;
}
import { AnimBlendTree } from './anim-blend-tree.js';
