import React from 'react'; import { StyledProps } from '../common'; import { TdImageProps } from './type'; export interface ImageProps extends TdImageProps, StyledProps { } declare const Image: React.FC; export default Image;