import { EventEmitter } from '@angular/core'; import { SelectItem } from "../../shared/model/select-item"; import { UsageArea } from "../../shared/model/usage-area"; import { UsageRange } from "../../shared/model/usage-range"; import { ApplyEvent } from "./apply-event"; import * as i0 from "@angular/core"; export declare class HeatmapComponent { /** * Which style to display, IAQ or SmartRouting */ style: string; /** * Usage data to display */ usageData: UsageArea[]; /** * Weekly data to display */ weeklyData: UsageRange[]; /** * Geojson used to render facility level */ facilityGeoJson: any; /** * Facility usage/sensor data */ usageAnalyticsJson: any; /** * Options to display in facility autocomplete */ facilityOptions: SelectItem[]; /** * Options to display in site autocomplete */ siteOptions: SelectItem[]; /** * Options to display in level autocomplete */ levelOptions: SelectItem[]; loading: boolean; /** * Site autocomplete chang event * @type {EventEmitter} */ siteChangeEvent: EventEmitter; /** * Facility autocomplete chang event * @type {EventEmitter} */ facilityChangeEvent: EventEmitter; /** * Level autocomplete chang event * @type {EventEmitter} */ levelChangeEvent: EventEmitter; /** * Apply button click event */ applyEvent: EventEmitter; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }