import { CSSProperties } from 'react';
export interface SkeletonProps {
    variant?: "text" | "circular" | "rectangular" | "rounded";
    width?: string | number;
    height?: string | number;
    animation?: "pulse" | "wave" | false;
    style?: CSSProperties;
    className?: string;
    id?: string;
}
declare const Skeleton: ({ variant, width, height, animation, style, className, id, }: SkeletonProps) => import("react/jsx-runtime").JSX.Element;
export default Skeleton;
