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