import { JSXElementConstructor, PropsWithChildren } from 'react';
interface Props {
    delay?: number;
    transitionDuration?: number;
    wrapperTag?: JSXElementConstructor<any>;
    childTag?: JSXElementConstructor<any>;
    className?: string;
    childClassName?: string;
    visible?: boolean;
    onComplete?: () => any;
}
export default function FadeIn(props: PropsWithChildren<Props>): JSX.Element;
export interface IChildProps {
    transitionDuration?: number;
    maxIsVisible: number;
    i: number;
}
export {};
