export interface StatsHelperCliOptions {
    readonly verbose: boolean;
    readonly help: boolean;
    readonly input: string;
    readonly compress: boolean;
    readonly 'dump-json': boolean;
    readonly 'output-dir': string;
    readonly 'root-dir': string;
    readonly 'no-ansi': boolean;
    readonly features: string[];
}
