import { ComponentType, Entity, System } from '@lastolivegames/becsy'; import { Command } from './Command'; import { Bundle } from '../components'; /** * A [`Command`] that adds the components in a [`Bundle`] to an entity. */ export declare class Insert implements Command { id: Entity; bundles: (ComponentType | Bundle)[]; constructor(id: Entity, bundles: (ComponentType | Bundle)[]); apply(system: System): void; private addBundle; }