import type { Matrix4 } from "@shopify/react-native-skia";
type TouchPoint = {
    x?: number;
    y?: number;
    absoluteX?: number;
    absoluteY?: number;
};
type ChartTouchPoint = {
    x: number;
    y: number;
};
export declare const getCartesianTouchCoordinates: ({ touch, transform, }: {
    touch: TouchPoint;
    transform?: Matrix4;
}) => ChartTouchPoint;
export {};
