export default AnimationControllerSystem;
declare class AnimationControllerSystem extends System<any, any, any, any, any> {
    constructor();
    dependencies: (typeof AnimationController)[];
    removers: any[];
    /**
     *
     * @param {AnimationController} component
     * @param entity
     */
    link(component: AnimationController, entity: any): void;
    unlink(component: any, entity: any): void;
}
import { System } from '../../../ecs/System.js';
import AnimationController from './AnimationController.js';
//# sourceMappingURL=AnimationControllerSystem.d.ts.map