@hhgtech/hhg-components
Version:
Hello Health Group common components
9 lines (8 loc) • 367 B
TypeScript
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;