import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface SingleThumbnailCardSkeletonProps extends Omit, 'children'> { /** * Width of the thumbnail skeleton. * @default 'var(--mzn-spacing-size-container-slim)' */ thumbnailWidth?: number | string; /** * Aspect ratio of the thumbnail skeleton. * @default '16/9' */ thumbnailAspectRatio?: string; } /** * Skeleton placeholder for SingleThumbnailCard component. * Renders a skeleton that mimics the SingleThumbnailCard layout. */ declare const SingleThumbnailCardSkeleton: import("react").ForwardRefExoticComponent>; export default SingleThumbnailCardSkeleton;