import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
interface NavBarTitleProps extends ViewProps {
className?: string;
children?: ReactNode;
}
export declare function NavBarTitle(props: NavBarTitleProps): JSX.Element;
export default NavBarTitle;