import { ReactElement } from 'react'; import { ActionsCellAPI, GridState } from '../../state'; import { FiltersMap } from '@wix/bex-core'; import { AddItemProps } from '@wix/design-system'; import { DragAndDrop } from '../DragAndDrop'; import { ActionsCellProps } from '../ActionsCell'; import { SupportedCardGalleryItemProps } from './SupportedCardGalleryItemProps'; export interface GridItemProps { state: GridState; preset?: 'full' | 'title' | 'empty'; renderAddItem?: () => ReactElement; renderItem?: (item: T, index: number) => Partial; index: number; rowIndex?: number; columnIndex?: number; actionsCell?: ActionsCellProps | ((item: T, index: number, api: ActionsCellAPI) => ActionsCellProps); dragAndDrop?: DragAndDrop; isOverlay?: boolean; } declare function _GridItem(props: GridItemProps): JSX.Element | null; export declare const GridItem: typeof _GridItem & { displayName: string; }; export {}; //# sourceMappingURL=GridItem.d.ts.map