import { ReactElement } from 'react'; import { RenderItem } from './RenderItem'; import { SupportedCardGalleryItemProps } from './SupportedCardGalleryItemProps'; import { GridBaseState } from '../../state'; import { AddItemProps } from '@wix/design-system'; import { ActionCell } from '../ActionCell'; import { FiltersMap } from '@wix/bex-core'; import { GridDragAndDrop } from '../GridDragAndDropDndKit/GridDragAndDrop'; export interface UseRenderFolderItemParams { folderPreset?: 'full' | 'title'; renderFolderItem?: (item: T, index: number) => Partial; state: GridBaseState; renderFolderAddItem?: () => ReactElement; folderActionCell?: ActionCell; dragAndDrop?: typeof GridDragAndDrop; } export declare function useRenderFolderItem(params: UseRenderFolderItemParams): RenderItem; //# sourceMappingURL=renderFolderItem.d.ts.map