import { OnDestroy, QueryList, AfterContentInit } from '@angular/core'; import { SelectItem } from 'primeng/api'; import { FormFieldComponent } from './form-field'; export declare class SelectBarFormFieldOptionComponent { text: string; value: string; } export declare class SelectBarFormFieldComponent extends FormFieldComponent implements AfterContentInit, OnDestroy { multiple: boolean; options: SelectItem[]; children: QueryList; private subscription; ngAfterContentInit(): void; ngOnDestroy(): void; createOptions(): void; }