import { ETestingFramework } from "../../../domain/enum/testing-framework.enum";
interface ITestingScripts {
    testAll: {
        command: () => string;
        name: string;
    };
    testE2e: {
        command: (framework: ETestingFramework, configFile: string) => string;
        name: string;
    };
    testE2eWatch: {
        command: (framework: ETestingFramework, configFile: string) => string;
        name: string;
    };
    testUnit: {
        command: (framework: ETestingFramework, configFile: string) => string;
        name: string;
    };
    testUnitCoverage: {
        command: (framework: ETestingFramework, configFile: string) => string;
        name: string;
    };
    testUnitWatch: {
        command: (framework: ETestingFramework, configFile: string) => string;
        name: string;
    };
}
export declare const TESTING_CONFIG_SCRIPTS: ITestingScripts;
export {};
//# sourceMappingURL=scripts.constant.d.ts.map