/// interface Props { alt?: string; src: string; width?: number | undefined; } declare const Logo: ({ alt, width, src }: Props) => JSX.Element; export default Logo;