import { HTMLMotionProps } from 'motion/react'; import { ReactNode } from 'react'; type PointerProps = Omit, "ref">; /** * A custom pointer component that displays an animated cursor. * Add this as a child to any component to enable a custom pointer when hovering. * You can pass custom children to render as the pointer. * * @component * @param {PointerProps} props - The component props */ export declare function Pointer({ className, style, children, ...props }: PointerProps): ReactNode; export {};