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