import type { FC, HTMLAttributes } from 'react'; export type SkeletonProps = HTMLAttributes & { dataTestId?: string; }; export declare const Skeleton: FC;