import { type SharedValue } from "react-native-reanimated"; import { type Matrix4 } from "@shopify/react-native-skia"; export type ChartTransformState = { panActive: SharedValue; zoomActive: SharedValue; origin: SharedValue<{ x: number; y: number; }>; matrix: SharedValue; offset: SharedValue; }; type ChartTransformStateConfig = { scaleX?: number; scaleY?: number; }; export declare const useChartTransformState: (config?: ChartTransformStateConfig) => { state: ChartTransformState; }; export {};