/**
 * Causes another entity to be destroyed
 * Will produce a {@link BehaviorStatus.Failed} if entity could not be destroyed, either because it doesn't exist or the reference is stale
 */
export class KillBehavior extends EntityBehavior {
    /**
     *
     * @param {EntityReference} ref
     * @returns {KillBehavior}
     */
    static create(ref: EntityReference): KillBehavior;
    tick(timeDelta: any): BehaviorStatus.Succeeded | BehaviorStatus.Failed;
    #private;
}
import { EntityBehavior } from "./EntityBehavior.js";
import { BehaviorStatus } from "../BehaviorStatus.js";
//# sourceMappingURL=KillBehavior.d.ts.map