import React from 'react'; import { CreateProps } from '../../types/utils/CreateProps'; import Div from '../Element/Div/Div'; import { ArrayElementType } from '../../types/utils/ArrayElementType'; import { BorderRadiusProps } from '../../components/Element/getBorderRadiusClasses'; declare type SkeletonProps = CreateProps<{ /** Width can be one of supported sizes from xxxs to xxlg or number as Pixel */ width?: number | SupportedSkeletonSize; /** Height can be one of supported sizes from xxxs to xxlg or number as Pixel */ height?: number | SupportedSkeletonSize; /** Width in percentages */ widthInPercentages?: number; /** Height in percentages */ heightInPercentages?: number; /** Check Div story for more details */ borderRadius?: BorderRadiusProps; }, typeof Div>; declare const Skeleton: React.FunctionComponent; declare const responsiveSupportedSizes: readonly ["xxxs", "xxs", "xs", "sm", "md", "lg", "xlg"]; export declare type SupportedSkeletonSize = ArrayElementType; export default Skeleton;