export interface labelConfigurationInterface {
    label: string;
    formControlName: string;
    stepName: string | null;
    badge?: {
        true: {
            color: string;
            label: string;
        };
        false: {
            color: string;
            label: string;
        };
    };
    valueType?: string;
    pipe?: string;
    type?: string;
}
