import { FunctionComponent, PropsWithChildren } from 'react';

interface FadeInProps extends PropsWithChildren {
    duration?: number;
}
declare const FadeIn: FunctionComponent<FadeInProps>;

export { FadeIn as default };
export type { FadeInProps };
