declare type Point = number[]; declare type PathPoint = Point[]; interface AssetsPathJson { type: 'json'; name: string; } declare type GeometryPathJson = PathPoint | AssetsPathJson; export { Point, PathPoint, AssetsPathJson, GeometryPathJson };