import { PropsWithBox } from '..';
import { HTMLAttributes } from 'react';

export type SkeletonProps = PropsWithBox<Omit<HTMLAttributes<HTMLDivElement>, "color">>;
export declare const Skeleton: ({ className, ...props }: SkeletonProps) => JSX.Element;
