import { EventEmitter } from '@angular/core'; import { VariableSummary } from '@mtna/pojo-consumer-ui'; /** * Variable List Component to display variable properties. * * @author Zach Edwards */ export declare class RdsVariableListComponent { /** Provides active color for selected variable */ activeVariable: VariableSummary; /** When a variable is clicked, user is navigated to `/baseUrl/ + variable.id`. Defaults to "/variables/" */ baseUrl: string; /** Debounce for variable search */ debounceSearch: number; /** Whether the list is loading variables */ loading: boolean; /** Required variables to display */ variables: Array; /** Text the user wants to search for in the list of variables */ search: EventEmitter; trackByFn(variable: any): any; handleSearch(text: string): void; }