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 {};
