import { KubedNumberSize } from '../theme'; export interface SkeletonProps { /** 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 SkeletonElement: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, SkeletonProps, never>; //# sourceMappingURL=Skeleton.styles.d.ts.map