import React from "react"; import { ViewStyle, StyleProp, TextProps } from "react-native"; export interface ICodeInputProps { cursorAnimationDuration?: number; codeAnimationDuration?: number; value: string; index?: number; textColor?: string; codeContainerStyle?: { backgroundColor?: string; borderWidth?: number; codeWidth?: number; codeHeight?: number; inputFontSize?: number; borderRadius?: number; fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900"; customStyle?: StyleProp; }; activeCodeContainerStyle?: { backgroundColor?: string; borderWidth?: number; codeWidth?: number; codeHeight?: number; inputFontSize?: number; borderRadius?: number; fontWeight?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900"; customStyle?: StyleProp; }; cursorStyle?: { color?: string; fontSize?: number; marginLeft?: number; marginTop?: number; customStyle?: StyleProp; }; afterInputDelay?: number; } export declare const InputSingleItem: React.FC; export default InputSingleItem;