export interface LinearProgressProps {
    /**
     * If `true` the progress with show the current percentage.
     */
    showLabel?: boolean;
    /**
     * The current percentage.
     */
    value: number;
    /**
     * The color of the component;
     */
    color?: 'default' | 'primary';
}
