UNPKG

266 BTypeScriptView Raw
1import * as React from "react";
2import { type HTMLDivProps, type Props } from "../../common/props";
3export interface NavbarHeadingProps extends Props, HTMLDivProps {
4 children?: React.ReactNode;
5}
6export declare const NavbarHeading: React.FC<NavbarHeadingProps>;