import { Query, World } from '../EntityComponentSystem';
import { System, SystemType } from '../EntityComponentSystem/System';
import { ActionsComponent } from './ActionsComponent';
export declare class ActionsSystem extends System {
    world: World;
    static priority: -5;
    systemType: SystemType;
    private _actions;
    query: Query<typeof ActionsComponent>;
    constructor(world: World);
    update(elapsed: number): void;
}
