import { ReactNode } from 'react';
export interface OutputProgressBarModel {
    title: string;
    description: string;
    textFlag: string;
    colorFlag?: string;
    itemText: string;
    percentage: string;
    colorBar?: string;
    backgroundColorBar?: string;
    /** Min 0 max 100 */
    valueProgressBar: number;
    children?: ReactNode;
}
