import { EventEmitter, ElementRef, QueryList, OnChanges } from '@angular/core'; import { DopeSelectOption } from './select.interface'; import { DopeOption } from '../option/option.component'; export declare class DopeSelect implements OnChanges { elementRef: ElementRef; placeholder: string; initialValue: object; classes: string[] | string; disabled: boolean; required: boolean; menuOpened: EventEmitter<{}>; menuClosed: EventEmitter<{}>; selection: EventEmitter<{}>; options: QueryList; selectedValue: DopeSelectOption; panelOpen: boolean; style: object; extraClasses: string[]; constructor(elementRef: ElementRef); ngOnInit(): void; ngAfterContentInit(): void; ngOnChanges(): void; toggle(): void; private _selectedOption(item); private closeMenu(); private openMenu(); private _onDocumentClick(event); }