import React from 'react'; import { DefaultProps, KubedNumberSize } from '../theme'; export interface SkeletonProps extends DefaultProps { /** Should skeleton overlay be displayed */ visible?: boolean; /** Skeleton height */ height?: number | string; /** Skeleton width */ width?: number | string; /** If Skeleton is a circle, it's width and border-radius will be equal to height */ circle?: boolean; /** Radius from theme.radius or number to set border-radius in px */ radius?: KubedNumberSize; /** Whether to show the animation effect */ animate?: boolean; } export declare const Skeleton: { ({ width, height, animate, visible, circle, radius, className, ...rest }: SkeletonProps): React.JSX.Element; displayName: string; }; //# sourceMappingURL=Skeleton.d.ts.map