import React from 'react';
export type Props = {
    imageFiles: (File | string)[];
    error?: Record<string, string>;
    setImageFiles?: (v: (File | string)[]) => void;
    removeKeyError?: (val: string) => void;
};
export declare const PostPhotosReview: ({ error, imageFiles: imageFilesInit, setImageFiles, removeKeyError, }: Props) => React.JSX.Element;
