import { IconElement, PopoverMenuProps } from '@wix/design-system'; export type MultiBulkActionSubItem = { /** * An event for button click. */ onClick?: any; text?: string; prefixIcon?: IconElement; tooltipText?: string; disabled?: boolean; dataHook?: string; biName?: string; subItems?: MultiBulkActionSubItem[]; popoverMenuProps?: Partial; }; export type MultiBulkActionSubItemPrivate = Omit & { biIndex: number; subItems?: (MultiBulkActionSubItem & { componentId?: string; appId?: string; })[]; }; //# sourceMappingURL=MultiBulkActionProps.d.ts.map