export interface LogoProps { /** Use a light version of the logo */ light?: boolean; /** The height of the logo */ height?: string; className?: string; } declare const Logo: ({ height, light, className, ...other }: LogoProps) => JSX.Element; export default Logo;