interface SkeletonCardProps { showImage?: boolean; showAvatar?: boolean; showTitle?: boolean; showDescription?: boolean; showActions?: boolean; imageHeight?: string; titleLines?: number; descriptionLines?: number; actionCount?: number; className?: string; level?: 1 | 2 | 3 | 4 | 5 | 6; } export default function SkeletonCard({ showImage, showAvatar, showTitle, showDescription, showActions, imageHeight, titleLines, descriptionLines, actionCount, className, level, }: SkeletonCardProps): import("react").JSX.Element; export {};