UNPKG

react-native-confirmation-code-field

Version:

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

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