import type GameObject from './GameObject.js'; /** * A specialised Set for managing GameObjects with tag-based lookups. */ export declare class ObjectSet extends Set { /** * Finds all objects with a specific tag. * @param tag The tag to filter by. If omitted, returns all objects. */ findAll(tag?: string): GameObject[]; }