import React from 'react'; import { FiltersMap, KeyedItem } from '@wix/bex-core'; import { GridCardItemProps } from './GridCardItem'; import { GridState, ItemActionsState } from '../../state'; import { ActionsCellProps } from '../ActionsCell'; interface ActionsCell { actionsCell: GridCardItemProps['actionsCell']; item: T; index: number; gridState: GridState; keyedItem: KeyedItem; itemActionsState: ItemActionsState; } export declare function evaluateActionsCell({ actionsCell, item, index, gridState, keyedItem, itemActionsState, }: ActionsCell): ActionsCellProps; export declare function toGridItemActions(actionsCell: ActionsCell & { itemActionsState: ItemActionsState; imagePlacement: string; }): { primaryAction: { label?: React.ReactNode; onClick?: React.MouseEventHandler | undefined; disabled?: boolean | undefined; disabledMessage?: string | undefined; } | null; settingsMenu: {} | React.ReactElement> | null; }; export {}; //# sourceMappingURL=toGridItemActions.d.ts.map