import { ReactElement } from 'react'; import { RenderItem } from './RenderItem'; import { SupportedCardGalleryItemProps } from './SupportedCardGalleryItemProps'; import { GridBaseState } from '../../state'; import { FiltersMap } from '@wix/bex-core'; import { AddItemProps } from '@wix/design-system'; import { ActionCell } from '../ActionCell'; import { GridDragAndDrop } from '../GridDragAndDropDndKit/GridDragAndDrop'; import type { Preset } from './Grid.types'; export interface UseRenderItemParams { preset?: Preset; renderItem?: (item: T, index: number) => Partial; state: GridBaseState; renderAddItem?: () => ReactElement; actionCell?: ActionCell; dragAndDrop?: typeof GridDragAndDrop; } export declare function useRenderItem(params: UseRenderItemParams): RenderItem; //# sourceMappingURL=useRenderItem.d.ts.map