import { ImageProps, default as Image } from './Image'; import { default as PreviewGroup } from './PreviewGroup'; export * from './Image'; export type { PreviewGroupProps } from './PreviewGroup'; export { PreviewGroup }; export type { ImageProps }; type ImageType = typeof Image & { PreviewGroup: typeof PreviewGroup; }; declare const ExportImage: ImageType; export default ExportImage;