import { EventEmitter } from '../../stencil.core'; export declare class ManifoldSelect { inputId?: string; name?: string; type?: string; pattern?: string; required?: boolean; disabled?: boolean; defaultValue?: string; value?: string; updateValue: EventEmitter; watchHandler(newVal: string): void; onChangeHandler: (e: Event) => void; onBlurHandler: () => void; componentWillLoad(): void; render(): any; }