import { default as React, CSSProperties } from 'react'; export type SkeletonProps = { /** Optionally override the height style property */ height?: CSSProperties['height']; /** Optionally override the width style property */ width?: CSSProperties['width']; /** Optionally override the border radius style property */ borderRadius?: CSSProperties['borderRadius']; /** Optional prop to add a test id to the Skeleton for QA testing */ qaTestId?: string; }; declare const Skeleton: { ({ height, width, borderRadius, qaTestId, }: SkeletonProps): React.JSX.Element; Card: () => import("react/jsx-runtime").JSX.Element; CardFooter: () => import("react/jsx-runtime").JSX.Element; HeaderMetric: () => import("react/jsx-runtime").JSX.Element; }; export { Skeleton };