import { GridProps } from '@zag-js/image-cropper'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface ImageCropperGridBaseProps extends PolymorphicProps, GridProps { } export interface ImageCropperGridProps extends HTMLProps<'div'>, ImageCropperGridBaseProps { } export declare const ImageCropperGrid: ForwardRefExoticComponent>;