import { EventEmitter } from '../../stencil-public-runtime'; export declare class DInput { type: 'text' | 'password' | 'email' | 'number'; name: string; label: string; placeholder: string; helperText: string; errorText: string; value: string; clearButton: boolean; personIcon: boolean; autoFocus: boolean; hidable: boolean; dInput: EventEmitter; dChange: EventEmitter; el: HTMLElement; private updateValue; private clearValue; private changePasswordVisibility; componentDidLoad(): void; render(): any; }