import * as _yamada_ui_motion from '@yamada-ui/motion';
import { MotionVariants, WithTransitionProps, MotionProps } from '@yamada-ui/motion';
import { ThemeProps } from '@yamada-ui/core';

declare const fadeProps: {
    animate: string;
    exit: string;
    initial: string;
    variants: MotionVariants;
};
interface FadeProps extends WithTransitionProps<MotionProps>, ThemeProps<"Fade"> {
}
/**
 * `Fade` is a component that gradually shows or hides an element.
 *
 * @see Docs https://yamada-ui.com/components/transitions/fade
 */
declare const Fade: _yamada_ui_motion.MotionComponent<"div", FadeProps>;

export { Fade, type FadeProps, fadeProps };
