import { ImageProps } from 'antd';
import { FC } from 'react';
import { IMAGE } from '../../Types';
export interface IImage {
    ctype: typeof IMAGE;
    props: ImageProps;
}
declare const Image: FC<IImage>;
export default Image;
