import { type SharedValue } from "react-native-reanimated"; import type { InputFieldType } from "../../types"; export declare const useChartPressState: (initialValues: Init) => { state: ChartPressState; isActive: boolean; }; export type ChartPressStateInit = { x: InputFieldType; y: Record; }; export type ChartPressState = { isActive: SharedValue; matchedIndex: SharedValue; x: { value: SharedValue; position: SharedValue; }; y: Record; position: SharedValue; }>; yIndex: SharedValue; };