import { CardGalleryItemProps } from '@wix/design-system'; import React, { ReactNode } from 'react'; import { FiltersMap, KeyedItem } from '@wix/bex-core'; import { GridBaseState } from '../../state'; import { ActionCell } from '../ActionCell'; import type { Preset } from './Grid.types'; export interface GridCardItemProps { children?: ReactNode; state: GridBaseState; keyedItem: KeyedItem; index: number; rowIndex?: number; columnIndex?: number; actionCell?: ActionCell; preset?: Preset; renderItem?: (item: T, index: number) => Partial; draggable?: boolean; droppable?: boolean; dragging?: boolean; dragHandleProps?: CardGalleryItemProps['dragHandleProps']; domRef?: (node: HTMLElement | null) => void; } declare function _GridCardItem(props: GridCardItemProps): React.JSX.Element; export declare const GridCardItem: typeof _GridCardItem & { displayName: string; }; export {}; //# sourceMappingURL=GridCardItem.d.ts.map