import React$1 from 'react'; interface SkeletonAvatarProps extends Omit, 'size'> { size?: string; } interface SkeletonButtonProps extends React.AllHTMLAttributes { width?: string; height?: string; } interface SkeletonCardProps extends React.AllHTMLAttributes { width?: string; height?: string; } interface SkeletonImageProps extends React.AllHTMLAttributes { width?: string; height?: string; } interface SkeletonInputProps extends React.AllHTMLAttributes { width?: string; height?: string; } interface SkeletonListProps extends React.AllHTMLAttributes { itemCount?: number; } interface SkeletonParagraphProps extends React.AllHTMLAttributes { lines?: number; } interface SkeletonTableProps extends React.AllHTMLAttributes { rows?: number; columns?: number; } declare const SkeletonAvatar: React$1.FC; declare const SkeletonButton: React$1.FC; declare const SkeletonParagraph: React$1.FC; declare const SkeletonTable: React$1.FC; declare const SkeletonCard: React$1.FC; declare const SkeletonList: React$1.FC; declare const SkeletonImage: React$1.FC; declare const SkeletonInput: React$1.FC; export { SkeletonAvatar, type SkeletonAvatarProps, SkeletonButton, type SkeletonButtonProps, SkeletonCard, type SkeletonCardProps, SkeletonImage, type SkeletonImageProps, SkeletonInput, type SkeletonInputProps, SkeletonList, type SkeletonListProps, SkeletonParagraph, type SkeletonParagraphProps, SkeletonTable, type SkeletonTableProps };