import { EventEmitter } from '../../stencil-public-runtime'; export declare class DdaInput { el: HTMLElement; label: string; placeholder: string; value: string; type: string; input_role: string; helper_text: string; error_message: string; validation_type?: string; validation_id: string; size?: string; input_status?: string; custom_class?: string; component_mode?: string; input_id: string; aria_label?: string; input_name?: string; required?: boolean; internalValue: string; inputChanged: EventEmitter; onChanged: EventEmitter; inputBlurred: EventEmitter<{ name: string; value: string; }>; onBlurred: EventEmitter; getValue(): Promise; watchValue(newValue: string): void; setValue(val: string): Promise; reset(): Promise; componentWillLoad(): void; componentDidLoad(): void; render(): any; }