import { PropsWithChildren, default as React } from 'react'; import { MotionValue } from 'framer-motion'; import { DeepPartial } from '../../types'; import { FollowerPointerTheme } from './theme'; export interface FollowerPointerProps extends React.PropsWithChildren { className?: string; content?: string | React.ReactNode; icon?: React.ReactNode; theme?: DeepPartial; } /** * * @name FollowerPointer * @description The FollowerPointer component is used to display a pointer that follows the mouse and displays content, such as a tooltip or a popover. It is a decorative component that is used to enhance the user experience in certain scenarios. * @returns */ export declare const FollowerPointer: ({ children, className, content, icon, theme: customTheme, }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export declare const FollowPointer: ({ x, y, content, icon, theme, }: { x: MotionValue; y: MotionValue; content: string | React.ReactNode; icon?: React.ReactNode; theme: DeepPartial; }) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FollowerPointer.d.ts.map