import { Entity, System } from '@lastolivegames/becsy'; import { Command } from './Command'; export declare class AddChild implements Command { parent: Entity; child: Entity; constructor(parent: Entity, child: Entity); apply(system: System): void; }