import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { SkeletonText as SkeletonTextElement, SkeletonTextProperties } from '@watching/clips/elements'; export interface SkeletonTextProps extends PropsWithChildren, 'emphasis'>> { ref?: ForwardedRef; emphasis?: SkeletonTextProperties['emphasis'] | boolean; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-skeleton-text': SkeletonTextProps; } } } export declare const SkeletonText: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=SkeletonText.d.ts.map