import { GoogleShapeResponseDTO } from './google-shape'; export declare class GeozoneDTO { id: string; serviceId: string; googleShapes: GoogleShapeResponseDTO[]; } export declare class CreateGeozoneDTO { serviceId: string; organizationId: string; googleShapes: GoogleShapeResponseDTO[]; } export declare class ZonePoint { lat: number; lng: number; } export declare class GoinzoneDTO { id: string; organizationId: string; serviceId: string; geojson?: ZonePoint[]; coordinates: ZonePoint; radius?: number; name: string; address?: string; description: string; price?: number; type: string; zoneType?: string; color?: string; pointType?: string; } export declare class GetGeozoneDTO { serviceId: string; organizationId: string; } export declare class CountyDTO { id: string; state: string; county: string; }