import { OnInit, EventEmitter, QueryList, AfterViewInit, OnChanges } from '@angular/core'; import { RDSelectOptionComponent } from './select-option/select-option.component'; import { RDDarkService } from '../dark.service'; export declare class RDSelectComponent implements OnInit, AfterViewInit, OnChanges { private darkService; value: string; placeholder: string; color: string; valueChange: EventEmitter; options: QueryList; open: boolean; text: string; dark: boolean; constructor(darkService: RDDarkService); ngOnInit(): void; ngAfterViewInit(): void; ngOnChanges(changes: any): void; changeText(): void; }