import { RefCallback } from 'react'; import { View, LayoutChangeEvent } from 'react-native'; import { PanningDirectionsEnum } from '../../components/panView'; type HiddenLocationRecord = Record; export interface HiddenLocation extends HiddenLocationRecord { wasMeasured: boolean; } export default function useHiddenLocation(): { setRef: RefCallback; onLayout: (event: LayoutChangeEvent) => void; hiddenLocation: HiddenLocation; }; export {};