UNPKG

320 BTypeScriptView Raw
1import * as React from 'react';
2import type { ImageProps } from 'rc-image';
3import PreviewGroup from './PreviewGroup';
4export interface CompositionImage<P> extends React.FC<P> {
5 PreviewGroup: typeof PreviewGroup;
6}
7declare const Image: CompositionImage<ImageProps>;
8export type { ImageProps };
9export default Image;