import { GameObject } from "../GameObject"; import { GameObjectComponent } from "../GameObjectComponent"; export declare abstract class ScriptComponent extends GameObjectComponent { readonly id: string; readonly gameObject: GameObject; constructor(id: string, gameObject: GameObject); }