import { EventEmitter } from '../../stencil-public-runtime'; export declare class NestInput { nativeInput?: HTMLInputElement; private inputId; el: HTMLElement; value?: string; name: string; label: string | null; icon: string | null; placeholder: string | null; type: string; helper: string | null; clearable: boolean; isLoading: boolean; mask?: string; nestInput: EventEmitter; onInput: (event: InputEvent) => void; clearInput: () => void; private getInputTarget; componentDidLoad(): void; render(): any; }