export interface CliArgs {
    [k: string]: unknown;
    env: string;
    profiler: boolean;
    debugMode: boolean;
    autoMockInJest: boolean;
    mockAll: boolean;
    mockFileReads: boolean;
    mockFileWrites: boolean;
}
