import { NonGraphicalObject } from './NonGraphicalObject.js'; import { CadObject } from '../CadObject.js'; import { Entity } from '../Entities/Entity.js'; import { ObjectType } from '../Types/ObjectType.js'; export declare class Group extends NonGraphicalObject { description: string; get entities(): readonly Entity[]; get isUnnamed(): boolean; get objectName(): string; get objectType(): ObjectType; selectable: boolean; get subclassMarker(): string; private _entities; constructor(name?: string); add(entity: Entity): void; addRange(entities: Entity[]): void; clear(): void; remove(entity: Entity): boolean; clone(): CadObject; } //# sourceMappingURL=Group.d.ts.map