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