import type { HTMLAttributes } from "react";
import React from "react";
import type { Property } from "csstype";
import type { MQ, BorderRadius } from "../../types";
export type SkeletonProps = {
width?: Property.Width | MQ;
height?: Property.Height | MQ;
borderRadius?: BorderRadius | MQ;
"data-e2e-test-id"?: string;
"data-ds-id"?: string;
} & HTMLAttributes;
export declare function Skeleton({ width, height, borderRadius, "data-e2e-test-id": dataE2eTestId, "data-ds-id": dataDsId, ...rest }: SkeletonProps): React.ReactElement;