import { HTMLAttributes, Ref } from 'react';
import { IComponentBaseProps } from '../types';
export declare const SKELETON = "skeleton";
type Variant = "text";
export declare const VARIANT_MAP: Record;
export declare const SKELETON_MAP: {
text: string;
};
export interface SkeletonProps extends Omit, "color">, IComponentBaseProps {
ref?: Ref;
variant?: Variant;
}
export {};