import type { PropsFor } from "../../types.js";
export type SkeletonRectProps = PropsFor<"div", {
    /** Width of element. If type is number, value is in px */
    width?: number | string;
    /** Height of element. If type is number, value is in px*/
    height?: number | string;
}>;
declare const SkeletonRect: import("react").ForwardRefExoticComponent<SkeletonRectProps & import("react").RefAttributes<HTMLDivElement>>;
export default SkeletonRect;
