index.d.ts 259 Bytes
/// <reference types="react" />
import { ImageProps } from 'antd';
interface Props extends ImageProps {
    imgValues?: string[];
    show_image?: boolean;
    setShowImage?: (value: any) => void;
}
declare const Image: React.FC<Props>;
export default Image;