export interface CircularProgressProps {
    /**
     * The width and height of the component;
     */
    size?: number;
    /**
     * The color of the component;
     */
    color?: 'default' | 'primary';
}
