UNPKG

react-native-confirmation-code-field

Version:

A react-native component to input confirmation code for both Android and IOS

8 lines (7 loc) 265 B
import type { TextInput } from 'react-native'; interface Options { value?: string; cellCount: number; } export declare function useBlurOnFulfill<TInput extends TextInput>({ value, cellCount, }: Options): import("react").RefObject<TInput | null>; export {};