import React from 'react'; export interface LogoProps { width?: number; height?: number; onLogo?: () => void; cy?: string; } declare const Logo: React.FC; export default Logo;