import { FiltersMap, KeyedItem } from '@wix/bex-core'; import { ToolbarBIReporter } from '../../state/ToolbarBIReporter'; import { ActionCellProps, SecondaryActionAction } from '../ActionCell'; import { ExtensionMenuItemsState } from '../../state'; import { TableActionCellSecondaryDivider } from '@wix/design-system'; type SecondaryActionDivider = Omit & { divider: true; }; export type SecondaryActionOrDivider = SecondaryActionAction | SecondaryActionDivider; export declare const createSecondaryActionCellPropWithBi: ({ toolbarBIReporter, actionCellProps, keyedItem, extensionMenuItems, }: { toolbarBIReporter: ToolbarBIReporter; actionCellProps: ActionCellProps; keyedItem: KeyedItem; extensionMenuItems: ExtensionMenuItemsState; }) => SecondaryActionOrDivider[]; export declare const createPrimaryActionCellPropsWithBI: (toolbarBIReporter: ToolbarBIReporter, actionCellProps: ActionCellProps, keyedItem: KeyedItem) => ActionCellProps['primaryAction']; export declare const reportOnPopoverMenuShow: (toolbarBIReporter: ToolbarBIReporter, actionCellProps: ActionCellProps, keyedItem: KeyedItem) => void; export {}; //# sourceMappingURL=CollectionItemActionsHelper.d.ts.map