import { MLResultInfo } from '../types';
export declare type ReportingData = MLResultInfo & {
    format: string;
    color: boolean;
    problemOnly: boolean;
    noStdOut: boolean;
    verbose: boolean;
};
export declare type Optional<C> = {
    [P in keyof C]?: C[P];
};
