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