import { Geometry } from "./Geometry"; import { GeometryCollection } from "./GeometryCollection"; import { GeometryType } from "./GeometryType"; import { FillRule } from "./FillRule"; import { Type } from "./type"; /** * @hidden */ export declare class GeometryGroup extends Geometry { static $t: Type; constructor(); d: GeometryCollection; protected get_b(): GeometryType; get b(): GeometryType; c: FillRule; }