import { OnInit } from '@angular/core'; import { FormGroup } from '@angular/forms'; import { Observable } from 'rxjs'; import { SelectFieldConfig, SelectOption } from '../../models'; export declare class SelectFieldComponent implements OnInit { config: SelectFieldConfig; group: FormGroup; options$: Observable; constructor(); ngOnInit(): void; }