import * as React from "react"; export interface MenuHeaderProps extends React.ComponentPropsWithoutRef<"div"> { /** * The content for the MenuHeader */ children: string; } /** * @public */ export declare const MenuHeader: React.FC;