import * as React from 'react'; export interface ProgressSpinnerProps extends Omit, HTMLDivElement>, 'ref'> { strokeWidth?: string; fill?: string; animationDuration?: string; children?: React.ReactNode; } export declare class ProgressSpinner extends React.Component { public getElement(): HTMLDivElement; }