interface ProgressSpinnerProps {
    strokeWidth?: string;
    fill?: string;
    animationDuration?: string;
}

declare class ProgressSpinner {
    $props: ProgressSpinnerProps;
}

export default ProgressSpinner;
