import ISpawnNode from "../interface/ISpawnNode"; import GameGraphChild from "./GameGraphChild"; export default class SpawnNode extends GameGraphChild implements ISpawnNode { static componentName: string; static defaults: Partial>; static schema: Required>; static includeKeys: string[]; private cache?; patch: Map>; spawn(): void; }