import React from 'react'; import { type ListSubheaderProps } from '../ListSubheader'; import './MenuSubheader.types'; export interface MenuSubheaderProps extends ListSubheaderProps { } declare const slots: { root: { slot: "root"; name: "MuiMenuSubheader"; }; }; export type MenuSubheaderSlots = keyof typeof slots; declare const MenuSubheader: React.FC; export default MenuSubheader;