import { SkeletonElementProps } from './Element'; export interface AvatarProps extends Omit { shape?: 'circle' | 'square'; } declare const SkeletonAvatar: { (props: AvatarProps): JSX.Element; defaultProps: { size: string; shape: string; }; }; export default SkeletonAvatar;