export default AnimationController;
declare class AnimationController {
    /**
     *
     * @param json
     * @returns {AnimationController}
     */
    static fromJSON(json: any): AnimationController;
    /**
     *
     * @type {List<AnimationRule>}
     */
    rules: List<AnimationRule>;
    fromJSON(json: any): void;
    toJSON(): any;
}
declare namespace AnimationController {
    let typeName: string;
}
import List from '../../../../core/collection/list/List.js';
import { AnimationRule } from "./AnimationRule.js";
//# sourceMappingURL=AnimationController.d.ts.map