import { ReactElement } from 'react'; import { FiltersMap } from '@wix/bex-core'; import { GridBaseState, LayoutType } from '../../state'; import { AddItemProps } from '@wix/design-system'; import { GridDragAndDrop } from '../GridDragAndDropDndKit/GridDragAndDrop'; import { DragAndDropCancel } from '../DragAndDrop'; import type { Preset } from './Grid.types'; export interface UseGridBaseSyncPropsParams { state: GridBaseState; preset?: Preset; range?: { start: number; length: number; }; renderAddItem?: () => ReactElement; dragAndDrop?: typeof GridDragAndDrop; imagePlacement?: 'side' | 'top'; layoutType?: LayoutType; dragAndDropCancel?: DragAndDropCancel; } export declare function useGridBaseSyncProps(props: UseGridBaseSyncPropsParams): void; //# sourceMappingURL=useGridBaseSyncProps.d.ts.map