import React from 'react'; import { CollectionState, FiltersMap } from '@wix/bex-core'; import { ItemActionsState } from '../../state'; import { ActionCellProps } from '../ActionCell'; export interface CollectionItemActionsProps { collection: CollectionState; state: ItemActionsState; renderActionCell?: (state: ItemActionsState) => ActionCellProps; } declare function _CollectionItemActions({ state, renderActionCell, }: CollectionItemActionsProps): React.JSX.Element; export declare const CollectionItemActions: typeof _CollectionItemActions & { displayName: string; }; export {}; //# sourceMappingURL=CollectionItemActions.d.ts.map