import React from "react"; type SkeletonVariant = "xs" | "sm" | "base" | "lg" | "xl" | "h1" | "h2" | "h3" | "h4"; export interface SkeletonProps { variant?: SkeletonVariant; circular?: boolean; width?: number | string; height?: number | string; className?: { root?: string; }; } export declare const Skeleton: ({ variant, circular, width, height, className, ...rest }: SkeletonProps) => React.JSX.Element; export {}; //# sourceMappingURL=skeleton.d.ts.map