import { ImageProps } from 'antd'; import React from 'react'; import './index.less'; import { GroupConsumerProps } from 'rc-image/lib/PreviewGroup'; export declare const ImageGroupContext: React.Context<{ beforeOpenPreview: (src: string) => void; changeImages: (src: string, isDelete?: boolean) => void; }>; interface ImageExtraProps { } declare const Image: { (props: ImageProps & ImageExtraProps): React.JSX.Element; PreviewGroup: React.FC; }; export { Image };