/**
 * 2024-11-04:  Migrated from PhotoFormWebpart
 *
 */
import * as React from 'react';
export interface IImagePasteProps {
    setParentImageData: (data: string | null) => void;
    clearId?: string;
    viewOnly?: boolean;
    imageUrl?: string;
    imageBoxCSS?: React.CSSProperties;
    imageBoxClassName?: string;
    imageCSS?: React.CSSProperties;
}
declare const ImagePaste: React.FC<IImagePasteProps>;
export default ImagePaste;
//# sourceMappingURL=fps-ImagePaste.d.ts.map