import React from 'react'; export type SkeletonShape = 'rectangle' | 'circle'; export type SkeletonProps = { width?: string | number; height?: string | number; shape?: SkeletonShape; className?: string; style?: React.CSSProperties; }; type SkeletonComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Skeleton: SkeletonComponent; export default Skeleton; //# sourceMappingURL=index.d.ts.map