import * as React from "react";
import { type HTMLDivProps, type Props } from "../../common/props";
export interface NavbarHeadingProps extends Props, HTMLDivProps {
children?: React.ReactNode;
}
export declare const NavbarHeading: React.FC<NavbarHeadingProps>;