import { EventEmitter } from '../../stencil-public-runtime'; export declare class Input { value: string; placeholder: string; required: boolean; readonly: boolean; focus: boolean; valueChanged: EventEmitter; render(): any; hostData(): { class: { focus: boolean; empty: boolean; }; }; handleChange(event: any): void; changeFocus(value: boolean): void; }