export declare const SKELETON_COLOR: readonly ["accent", "primary", "danger", "warning", "success", "neutral", "subdued"];
type Props = {
    rows?: number;
    color?: (typeof SKELETON_COLOR)[number];
    active?: boolean;
    height?: string | number;
    className?: string;
};
export declare const VuiSkeleton: ({ rows, color, active, height, className }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
