import { OnInit, EventEmitter, AfterViewInit } from '@angular/core'; import { FormGroup, FormControl } from '@angular/forms'; import { KeysPipe } from '../../pipes/keys.pipe'; import { Config } from '../../models/config'; import * as i0 from "@angular/core"; export declare class NgOtpInputComponent implements OnInit, AfterViewInit { private keysPipe; private document; config: Config; onInputChange: EventEmitter; formCtrl: FormControl; otpForm: FormGroup; currentVal: string; inputControls: FormControl[]; componentKey: string; constructor(keysPipe: KeysPipe, document: Document); get inputType(): "password" | "tel" | "text"; ngOnInit(): void; ngAfterViewInit(): void; onKeyDown($event: KeyboardEvent, inputIdx: number): boolean; onInput($event: any): void; onKeyUp($event: any, inputIdx: any): void; validateNumber(val: any): boolean; getBoxId(idx: string | number): string; focusTo(eleId: string): void; setValue(value: string | number): void; handlePaste(e: any): void; private rebuildValue; private getControlName; private clearInput; private setSelected; private ifValidKeyCode; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }