import React, { HTMLAttributes } from 'react';
interface Props extends HTMLAttributes<HTMLImageElement> {
    src?: string | null;
    crossOrigin?: 'anonymous' | 'use-credentials' | boolean;
}
export declare const CropperSource: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLImageElement>>;
export {};
