import type { Variant } from 'motion'; type PopoverAnimation = { enter: Variant; exit: Variant; initial: Variant; }; /** * Defines animation variants for entering and exiting animations on a popover component using Framer Motion. * The `PopoverEnterAnimation` constant is an object that specifies two states, `enter` and `exit`, * which are used to animate the component when it is entering or exiting the viewport, respectively. * The `enter` variant sets the component to full opacity (`1`) and moves it to its final position (`y: '0px'`), * while the `exit` variant sets the component to zero opacity (`0`) and moves it off-screen (`y: '80px'`). */ export declare const PopoverTransition: PopoverAnimation; export {};