import React from 'react';
declare type animationType = '' | 'down' | 'left';
interface Props {
    animationType?: animationType;
    className?: string;
    restProps?: any;
}
declare const StartSpace: React.FC<Props>;
export default StartSpace;
