import { SyntheticEvent } from "react"; /** * Wraps a and perform the navigation to href through the router. */ interface NavProps { children: React.ReactNode | React.ReactNode[]; /** * Optional router navigation target. If omitted, the wrapped anchor href is used. */ to?: string; /** * A click was intercepted * @param ev * @returns */ onClick?: (ev: SyntheticEvent) => void; /** * If true, use replaceState instead of pushState (no new browser history entry). * Defaults to true for backward compatibility. */ replace?: boolean; } export declare function Nav({ children, to, onClick, replace }: NavProps): import("react/jsx-runtime").JSX.Element; /** * A anchor tag that performs navigation through the router. */ interface NavLinkProps { children: React.ReactNode | React.ReactNode[]; href: string; className?: string; /** * use the root router to navigate */ topLevelNav?: boolean; clearBreadcrumbs?: boolean; } export declare function NavLink({ children, href, className, topLevelNav, clearBreadcrumbs }: NavLinkProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Nav.d.ts.map