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