import React from 'react'; import { KeyboardKey } from '../InoKeyboard/InoKeyboard.types'; interface InoProtectInputProps { onChange?: (value: string) => void; count?: number; withLetters?: boolean; keyboard?: boolean; isOpenKeyboard?: boolean; clearOnComplete?: boolean; customType?: KeyboardKey[][]; onComplete?: (value: string) => void; isActive?: boolean; onBack?: () => void; onUp?: () => void; onDown?: () => void; onLeft?: () => void; onRight?: () => void; onOk?: () => void; isAsterisk?: boolean; } export declare const InoProtectInput: React.FC; export {};