import type React from "react"; interface NavigationLogoProps { maxWidth?: string; maxHeight?: string; children: React.ReactNode; } export declare const NavigationLogo: ({ children, maxWidth, maxHeight, ...props }: NavigationLogoProps) => import("react/jsx-runtime").JSX.Element; export {};