import { HTMLAttributes } from 'react';

interface SkeletonProps {
    readonly width?: number;
    readonly height?: number;
    readonly aspectRatio?: number;
}
declare const Skeleton: ({ width, height, aspectRatio, ...props }: HTMLAttributes<HTMLDivElement> & SkeletonProps) => import("react/jsx-runtime").JSX.Element;
export default Skeleton;
