import React, { ReactElement } from 'react'; import { FiltersMap } from '@wix/bex-core'; import { GridFoldersState } from '../../state'; import { SupportedCardGalleryItemProps } from './SupportedCardGalleryItemProps'; import { ActionCell } from '../ActionCell'; import { AddItemProps } from '@wix/design-system'; import { GridDragAndDrop } from '../GridDragAndDropDndKit/GridDragAndDrop'; export interface GridFoldersSectionsGroupProps { dataHook?: string; state: GridFoldersState; itemsSectionTitle?: string; foldersSectionTitle?: string; renderItem?: (item: T1, index: number) => Partial; actionCell?: ActionCell; renderAddItem?: () => ReactElement; renderFolderItem?: (item: T2, index: number) => Partial; folderActionCell?: ActionCell; renderFolderAddItem?: () => ReactElement; dragAndDrop?: typeof GridDragAndDrop; } declare function _GridFoldersSectionsGroup(props: GridFoldersSectionsGroupProps): React.JSX.Element; export declare const GridFoldersSectionsGroup: typeof _GridFoldersSectionsGroup & { displayName: string; }; export {}; //# sourceMappingURL=GridFoldersSectionsGroup.d.ts.map