import React from 'react'; import CommonProps from '../../Model/Common'; type ConditionalProps = { variant: 'variant1' | 'variant4' | 'variant5' | 'variant6' | 'variant9'; color: string; } | { variant: 'variant2' | 'variant7' | 'variant8' | 'variant'; color: string; bgColor: string; } | { variant: 'variant3'; color1: string; color2: string; }; export type Props = CommonProps & ConditionalProps & { height: string; width: string; }; export default function ProgressSpinner(props: Props): React.JSX.Element; export {};