import { ReactElement } from 'react'; import { FiltersMap } from '@wix/bex-core'; import { SupportedCardGalleryItemProps } from './SupportedCardGalleryItemProps'; import { ActionsCell } from '../ActionsCell'; import { GridState } from '../../state'; import { AddItemProps } from '@wix/design-system'; import { DragAndDrop } from '../DragAndDrop'; export interface UseGridSyncPropsParams { state: GridState; preset?: 'full' | 'title' | 'empty'; renderItem?: (item: T, index: number) => Partial; actionsCell?: ActionsCell; renderAddItem?: () => ReactElement; dragAndDrop?: DragAndDrop; isUsingFolders?: boolean; imagePlacement?: 'side' | 'top'; } export declare function useGridSyncProps(props: UseGridSyncPropsParams): void; //# sourceMappingURL=useGridSyncProps.d.ts.map