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