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