import { ElementRef } from '@angular/core'; import { UkhoAbstractFormField } from '../form-field/form-field'; export declare class SelectComponent extends UkhoAbstractFormField { /** * The label which will be used as a placeholder in the unfilled state, and as a field label in the filled state. */ label: string; /** * The hint that is used to instruct the user what to do. For example, 'Select an item from the dropdown'. */ hint: string; /** * @ignore */ disabled: boolean; /** * A reference to the select element within the wrapper component */ select: ElementRef; /** * @ignore */ writeValue(obj: any): void; }