import React from 'react';
export interface SpinnerProps {
/**
* size of spinner
*/
size?: string;
/**
* The color of the empty area in the spinner
*/
emptyColor?: string;
/**
* The color of the spinner
*/
color?: string;
/**
* The thickness of the spinner
* @example
* ```jsx
*
* ```
*/
thickness?: string;
/**
* For accessibility, it's important to add a fallback loading text.
* This text will be visible to screen readers.
*/
label?: string;
}
export declare type SpinnerRef = HTMLDivElement;
export declare const Spinner: React.ForwardRefExoticComponent>;
export default Spinner;