import type React from "react"; interface LogoProps { src: React.ReactNode; background?: string; width?: number; height?: number; } export default function Logo({ src, background, width, height }: LogoProps): import("react/jsx-runtime").JSX.Element; export {};