export interface IDropdownMenuItem { id?: number; title: string; titleOptionalClass?: string; type?: string; svgUrl?: string; svgClass?: string; hasBorder?: boolean; isDisabled?: boolean; innerDropdownContent?: { title: string; type?: string; isChecked?: boolean; isColumnDropdown?: boolean; isCheckBoxDisabled?: boolean; }[]; isSelectMenuTypeActionItem?: boolean; isChecked?: boolean; groupName?: string; isColumnDropdown?: boolean; isCheckBoxDisabled?: boolean; }