import type { MotionNodeAnimationOptions } from 'motion/react'; import type { ReactNode } from 'react'; type FadeProps = MotionNodeAnimationOptions & { children: ReactNode; show: boolean; }; export declare function Fade({ children, initial, animate, exit, transition, show }: FadeProps): import("@emotion/react/jsx-runtime").JSX.Element; export {};