import { ElementChildren, NavbarLinkElement } from "../../typings"; import React from "react"; import { RecursivePartial } from "../../typings/helper"; export type NavbarLinkProps = RecursivePartial & { idx?: string | null; children?: ElementChildren | NavbarLinkElement["children"]; data?: NavbarLinkElement["data"]; }; export declare function NavbarLink(props: NavbarLinkProps): React.JSX.Element;