import React, { CSSProperties } from 'react';
import { CropperTransitions, CropperImage, CropperState } from 'advanced-cropper';
interface DesiredCropperRef {
    getState: () => CropperState | null;
    getTransitions: () => CropperTransitions;
    getImage: () => CropperImage | null;
}
export interface CropperBackgroundImageProps {
    className?: string;
    cropper: DesiredCropperRef;
    crossOrigin?: 'anonymous' | 'use-credentials' | boolean;
    style?: CSSProperties;
}
export declare const CropperBackgroundImage: React.ForwardRefExoticComponent<CropperBackgroundImageProps & React.RefAttributes<HTMLImageElement>>;
export {};
