import type { RefObject } from 'react'; import type { TextInput } from 'react-native'; interface Options { value?: string; cellCount: number; } export declare const useBlurOnFulfill: ({ value, cellCount, }: Options) => RefObject; export {};