import React from 'react'; interface LogoProps { className?: string; rotate?: boolean; size?: string | number; color?: string; } declare const Logo: React.FC; export default Logo;