export type SkeletonAvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; export type SkeletonAvatarShape = 'circle' | 'rounded'; interface SkeletonAvatarProps { size?: SkeletonAvatarSize; shape?: SkeletonAvatarShape; class?: string; } declare const SkeletonAvatar: import("svelte").Component; type SkeletonAvatar = ReturnType; export default SkeletonAvatar;