export declare class Label { position: number[]; type: "Flag" | "Circle" | "Line"; description: string; GroupId: number; constructor(position: number[], type: "Flag" | "Circle" | "Line", description: string, GroupId: number); static fromDTO(obj: Object): Label; }