import { SkeletonImageProps } from 'antd/es/skeleton/Image';
import { FC } from 'react';
import { SKELETON_IMAGE } from '../../../Types';
export interface ISkeletonImage {
    ctype: typeof SKELETON_IMAGE;
    props: SkeletonImageProps;
}
declare const SkeletonImage: FC<ISkeletonImage>;
export default SkeletonImage;
