import { type HTMLAttributes } from "react"; export interface SkeletonProps extends HTMLAttributes { width?: string | number; height?: string | number; circle?: boolean; } export declare const Skeleton: import("react").ForwardRefExoticComponent>;