import { EventEmitter, OnChanges, OnInit, ChangeDetectorRef, SimpleChanges } from "@angular/core";
import { AgentService } from "../../services/agent.service";
import { GoogleMapsService } from "../../services/google-maps.service";
import { OpenStreetMapsService } from "../../services/open-street-maps.service";
import * as i0 from "@angular/core";
export declare class CustomerDetailsComponent implements OnInit, OnChanges {
    agentService: AgentService;
    googleMapsService: GoogleMapsService;
    openStreetMapsService: OpenStreetMapsService;
    private cdr;
    customer: any;
    config: any;
    title: string;
    viewTaskDetails: Array<string>;
    taskId: any;
    labelValuePairConfig: any;
    labelValuePairData: any;
    nextStep: EventEmitter<any>;
    removeTask: EventEmitter<any>;
    onClickPerformAction: EventEmitter<any>;
    constructor(agentService: AgentService, googleMapsService: GoogleMapsService, openStreetMapsService: OpenStreetMapsService, cdr: ChangeDetectorRef);
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    getValueFromArray(paths: any): string;
    parseData(): void;
    getTaskCreationTime(task: any): string;
    convertEpochToDate(epochTime: any): string;
    getTaskDetails(taskData: any): any;
    goToMaps(location: any): void;
    handleOnClickNext(e: any): void;
    close(): void;
    handleOnClickRemoveTask(task: any): void;
    handleOnClickPerformAction(event: any): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<CustomerDetailsComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<CustomerDetailsComponent, "customer-details", never, { "customer": "customer"; "config": "config"; }, { "nextStep": "nextStep"; "removeTask": "removeTask"; "onClickPerformAction": "onClickPerformAction"; }, never, never>;
}
