import { FC, ReactNode } from 'react';
declare type MenuTitleProps = {
    label?: string;
    sublabel?: string;
    icon?: ReactNode;
};
export declare const MenuTitle: FC<MenuTitleProps>;
export {};
