/// import type { UiColors } from '../../types'; export type CircularProgressProps = { colorKey?: UiColors; size?: 'large' | 'medium' | 'small' | 'xsmall'; }; declare function CircularProgress({ colorKey, size }: CircularProgressProps): JSX.Element; export default CircularProgress;