export interface ActionMenuExportationMsg { /** * All the Action Menu Item that eager load as pinned icon. */ responsibleForRenderingFlatIcon: Array; /** * All the Action Menu item that eager load as menu item. */ responsibleForRenderingListItem: Array; /** * The function to let action menu know when remove the rendering item. Only need to call for simple item */ onClose: (settingsKey: string) => void; }