import { SkeletonAvatarProps, SkeletonBlockProps, SkeletonProps, SkeletonTextProps } from "./types.js"; import React from "react"; //#region src/skeleton/skeleton.d.ts declare const SkeletonBlock: React.MemoExoticComponent>>; declare const SkeletonText: React.MemoExoticComponent>>; declare const SkeletonAvatar: React.MemoExoticComponent>>; type SkeletonComponent = React.MemoExoticComponent>> & { Block: typeof SkeletonBlock; Text: typeof SkeletonText; Avatar: typeof SkeletonAvatar; }; declare const Skeleton: SkeletonComponent; //#endregion export { Skeleton }; //# sourceMappingURL=skeleton.d.ts.map