/// <reference types="react" />
import { Box } from '../../atoms';
declare namespace FadeIn {
    type Input = Box.DefaultInput & {
        animationTime?: number;
        animationDelay?: number;
    };
}
declare const FadeIn: React.FC<FadeIn.Input>;
declare namespace FadeUp {
    type Input = Box.DefaultInput & {
        animationTime?: number;
        animationDelay?: number;
    };
}
declare const FadeUp: React.FC<FadeUp.Input>;
export { FadeIn, FadeUp };
