import SVGElement from "./SVGElement"; export default class Group extends SVGElement { children: SVGElement[]; constructor(children?: SVGElement[]); toString(): string; add(child: SVGElement): void; remove(child: SVGElement): void; }