import { ListProperties } from '../list/properties';
export type MenuGroupProperties = {
    /**
     * Heading text of the menu group
     */
    header?: string;
    /**
     * Scale of the menu group
     */
    scale: ListProperties['scale'];
};
