import { EventEmitter, OnInit } from '@angular/core';
import { LocationDropDownModel } from '../../models/locations-drop-down-list.model';
import { LocationSelectorInfo } from '../../models/locationSelectorModel';
export declare class LocationSingleSelectorTreeViewComponent implements OnInit {
    expandedKeys: any[];
    selectedLocationId: number;
    locations: LocationDropDownModel[];
    closeEvent: EventEmitter<LocationSelectorInfo>;
    locationSelector: LocationSelectorInfo;
    constructor();
    ngOnInit(): void;
    ngAfterContentInit(): void;
    showClick(dataItem: any): void;
    private addExpandListItem;
}
