import { type SharedValue } from "react-native-reanimated"; import type { Point } from "../utils"; export type SharedPoint = Point>; export declare const useSharedPoint: (x: number, y: number) => SharedPoint;