import { HTMLMotionProps } from 'framer-motion'; import { PropsWithChildren } from 'react'; import { DeepPartial } from '../../types'; import { PerspectiveCardTheme } from './theme'; export interface PerspectiveCardProps extends HTMLMotionProps<"div"> { className?: string; wrapperClassName?: string; theme?: DeepPartial; } /** * A card component with a perspective effect that responds to mouse movements. * * @component * @example * ```tsx * *
Your Content Goes Here
*
* ``` * * @param {PropsWithChildren} props - The properties of the PerspectiveCard component. * @returns {React.ReactNode} React.ReactNode * @see {@link https://www.framer.com/motion/gestures/} Framer motion Gesture docs. * @author Pol Gubau Amores - https://polgubau.com */ export declare const PerspectiveCard: ({ children, className, wrapperClassName, theme: customTheme, ...props }: PropsWithChildren) => React.ReactNode; //# sourceMappingURL=PerspectiveCard.d.ts.map