import '../css/main.scss'; interface IArgs { count?: number; secure?: boolean; previewDuration?: number; numeric?: boolean; onInput?: Function; uppercase?: boolean; } export default class PincodeInput { args: any; count: number; secure: boolean; previewDuration: number; numeric: boolean; selector: HTMLElement; cells: Array; focusedCellIdx: number; value: string; onInput: Function; uppercase: boolean; constructor(selector: string, args: IArgs); private setCells; private initCells; private onCellChanged; private onKeyDown; private onCellErase; private focusPreviousCell; private focusNextCell; private focusCellByIndex; private isTheCellValid; getValue(): void; } export {};