UNPKG

@wulperstudio/cms

Version:
17 lines (16 loc) 445 B
import React from 'react'; import { BoxProps } from '@mui/material'; import { Avatar2Model } from '../../components'; interface OptionModel { item: React.ReactNode; } export interface MenuSettingsModel { options: Array<OptionModel>; urlAvatar?: string; hideAvatar?: boolean; title?: string; boxProps?: BoxProps; AvatarProps?: Avatar2Model; } export declare const MenuSettings: React.FC<MenuSettingsModel>; export {};