export default TimerSystem;
declare class TimerSystem extends System<any, any, any, any, any> {
    constructor();
    dependencies: (typeof Timer)[];
    update(timeDelta: any): void;
    #private;
}
import { System } from '../System.js';
import Timer from '../components/Timer.js';
//# sourceMappingURL=TimerSystem.d.ts.map