import { OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; export declare class SelectComponent implements OnInit { formControl: FormControl; selectOptions: SelectOption[]; full: boolean; shadow: boolean; readonly hostDisplay: "block" | "inline-block"; constructor(); ngOnInit(): void; } export interface SelectOption { value: any; label: string; }