import { PropsWithChildren } from "react"; export type SkeletonProps = PropsWithChildren<{ /** Render children N times */ repeat?: number; }>; declare const Skeleton: { ({ children, repeat }: SkeletonProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Skeleton;