import { Relation } from 'typeorm'; import { EntityTag } from './entityTag'; import { PlaceType } from './placeType'; export declare class Boundary { id: number; name: string | null; type: string | null; buffer: string | null; createdAt: Date | null; modifiedAt: Date | null; createdBy: string | null; modifiedBy: string | null; clientId: number; location: string | null; status: number; radiusDisplayUnit: string | null; dataSourceTypeId: number | null; geometry: string | null; color: string | null; isUserCreated: boolean; area: number | null; centerLat: number | null; centerLon: number | null; description: string | null; placeTypeId?: number | null; placeType?: Relation | null; securityGroupEntityTags?: EntityTag[]; }