import { EventEmitter } from '@angular/core'; import * as i0 from "@angular/core"; export interface DropdownOption { name: string; value: string; } type LabelType = 'on' | 'in' | 'over'; export declare class DropdownComponent { options: DropdownOption[]; placeholder: string; height: string; width: string; selectedOption: EventEmitter; selected: DropdownOption | null; label: string; labelType: LabelType; labelColor: string; labelFocusColor: string; borderFocusColor: string; borderColor: string; borderHoverColor: string; textColor: string; append: string; get styleHeight(): string; get styleWidth(): string; onSelect(option: DropdownOption | null): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};