import { EventEmitter } from '../../stencil-public-runtime'; export declare class COtpInput { internals: ElementInternals; hasAutofocus: boolean; hideDetails: boolean; hint: string; elementId: string; length: number; valid: boolean; validation: string; value: string; changeValue: EventEmitter; completion: EventEmitter; statusText: string; reset(): Promise; private _backSpacePressed; private _debounce; private _isPasting; private _inputs; private static _uniqueId; onValidationMessageChange(): void; onValueChange(value: string): void; private _emitValue; private _getElements; private _onFocus; private _onKeyDown; get id(): string; private _onInput; private _onPaste; private _updateStatusText; private _handleValueChange; private _renderInput; componentWillLoad(): void; componentDidLoad(): void; render(): any; }