import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface ImageCropperSelectionBaseProps extends PolymorphicProps { } export interface ImageCropperSelectionProps extends HTMLProps<'div'>, ImageCropperSelectionBaseProps { } export declare const ImageCropperSelection: ForwardRefExoticComponent>;