import type { PropsFor } from "../../types.js"; export type SkeletonTextProps = PropsFor<"span", { /** 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 SkeletonText: import("react").ForwardRefExoticComponent>; export default SkeletonText;