import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { SkeletonView as SkeletonViewElement, SkeletonViewProperties } from '@watching/clips/elements'; export interface SkeletonViewProps extends PropsWithChildren> { ref?: ForwardedRef; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-skeleton-view': SkeletonViewProps; } } } export declare const SkeletonView: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=SkeletonView.d.ts.map