/**
 * 2024-11-04:  Migrated from PhotoFormWebpart
 *
 */
import * as React from 'react';
export interface IMultiImagePasteProps {
    setParentImageData?: (data: string | null) => void;
    imageCount: number;
    elementCSS?: React.CSSProperties;
    elementClassName?: string;
    imageBoxCSS?: React.CSSProperties;
    imageCSS?: React.CSSProperties;
    preloadImages?: string[];
}
declare const ParentForm: React.FC<IMultiImagePasteProps>;
export default ParentForm;
//# sourceMappingURL=fps-MultiImageParent.d.ts.map