import React from 'react';
import type { TdImageViewerProps } from './type';
import type { StyledProps } from '../common';
export interface ImageViewerProps extends TdImageViewerProps, StyledProps {
}
declare const ImageViewer: React.FC<ImageViewerProps>;
export default ImageViewer;