import * as React from 'react'; import type { SkeletonElementProps } from './Element'; export interface SkeletonImageProps extends Omit { } declare const SkeletonImage: (props: SkeletonImageProps) => React.JSX.Element; export default SkeletonImage;