import React from "react"; export interface NavbarProps { children?: React.ReactNode; textColor?: string; [rest: string]: any; } declare const Navbar: ({ children, textColor, logo, ...rest }: NavbarProps) => JSX.Element; export default Navbar;