/** * Skeleton — ported 1:1 from Veryfront Studio. Animated placeholder bar; size * it with `w-*` / `h-*` utilities. Private to the chat module. * * @module react/components/ui/skeleton */ import * as React from "react"; /** Props accepted by ``. */ export interface SkeletonProps extends React.HTMLAttributes { ref?: React.Ref; } /** Render an animated placeholder bar. */ export declare function Skeleton({ className, ref, ...props }: SkeletonProps): React.ReactElement; //# sourceMappingURL=skeleton.d.ts.map