import { TelemetryAnalyzerService } from './telemetry-analyzer.service'; export declare class MapRefinementController { private readonly analyzerService; constructor(analyzerService: TelemetryAnalyzerService); getSummary(): Promise<{ telemetry: { total: any; }; roads: { analyzed: any; closed: any; }; candidates: { total: any; pending: any; }; }>; syncExternal(): Promise; refreshCache(): Promise<{ cachedCount: any; }>; analyzeRoadSpeeds(hours?: number): Promise; discoverNewRoads(hours?: number): Promise; getCandidates(status?: string): Promise; discoverClosures(hours?: number): Promise<{ roadsClosed: any; }>; getClosures(): Promise; getCongestionData(north: number, south: number, east: number, west: number): Promise; approveCandidate(id: string): Promise<{ success: boolean; id: string; status: string; }>; rejectCandidate(id: string): Promise<{ success: boolean; id: string; status: string; }>; }