import { ArgsMap, ExecEnv } from '../scripts'; import { TestOptions, GroupedPackages } from './interfaces'; import { PackageInfo } from '../interfaces'; export declare function getArgs(options: TestOptions): ArgsMap; export declare function getEnv(options: TestOptions, suite?: string): ExecEnv; export declare function setEnv(options: TestOptions, suite?: string): void; export declare function filterBySuite(pkgInfos: PackageInfo[], options: TestOptions): PackageInfo[]; export declare function groupBySuite(pkgInfos: PackageInfo[], availableSuites: string[], options: TestOptions): GroupedPackages; declare type TeardownPkgsArg = { name: string; dir: string; suite?: string; }[]; export declare function globalTeardown(options: TestOptions, pkgs: TeardownPkgsArg): Promise; export declare function logE2E(dir: string, failed: boolean): Promise; export declare function reportCoverage(suite: string, chunkIndex: number): Promise; export {}; //# sourceMappingURL=utils.d.ts.map