import { HandleProps } from '@zag-js/image-cropper'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface ImageCropperHandleBaseProps extends PolymorphicProps, HandleProps { } export interface ImageCropperHandleProps extends HTMLProps<'div'>, ImageCropperHandleBaseProps { } export declare const ImageCropperHandle: ForwardRefExoticComponent>;