import type { LayoutChangeEvent } from 'react-native';
interface Coords {
    locationX: number;
    locationY: number;
}
export interface Params {
    setValue(text: string): void;
    value?: string;
}
export declare const useClearByFocusCellCommon: (params: Params) => readonly [(coords: Coords) => void, (index: number) => (event: LayoutChangeEvent) => void];
export {};
