interface SkeletonImageProps { width?: string; height?: string; aspectRatio?: string; borderRadius?: string; className?: string; level?: 1 | 2 | 3 | 4 | 5 | 6; } export default function SkeletonImage({ width, height, aspectRatio, borderRadius, className, level, }: SkeletonImageProps): import("react").JSX.Element; export {};