/// /// import { FilterMode } from '../../interfaces/interfaces'; import { PropertyValues } from 'lit'; import { JsxNode, PublicLitElement as LitElement, TargetedEvent } from '@arcgis/lumina'; export declare class InstantAppsInteractiveLegend extends LitElement { /** * Reference to Map View * * @required */ view: __esri.MapView; /** * Displays ‘Zoom to’ button, updates the extent of the view based on the results from the legend * * @default false */ zoomTo: boolean; /** * Display the individual counts for categories and total counts for layers in the legend * * @default false */ featureCount: boolean; /** Use effects to differentiate between features that are included and excluded from legend filter results */ filterMode: FilterMode; /** @default false */ compact: boolean; }