import { FC, PropsWithChildren, RefObject } from 'react'; import { CSSTransitionProps } from 'react-transition-group/CSSTransition'; import { SetOptional } from 'type-fest'; export declare const ANIMATION_DEFAULT_TIMEOUT = 300; interface FadeProps extends Omit, 'nodeRef'> { nodeRef: RefObject; } declare const Fade: FC, 'timeout'> & FadeProps & PropsWithChildren>; export default Fade;