export declare const CLI_PATH: string; export declare const EXPECTED_ALL_SKILL_COUNT: number; export declare const EXPECTED_BASIC_SKILL_COUNT: 8; export declare const EXPECTED_POPULATED_CATEGORY_COUNT: number; export declare const PACKAGE_VERSION: string; /** * Retained for the ~36 call sites that already pass it. NEW TESTS DO NOT NEED IT: * every test file calls useDefaultTestTimeout(), so a subprocess test written * with no timeout argument is already covered — which is the point, because * remembering to annotate the next one is exactly what did not happen. * * Aliased rather than left at its old 15000 so this constant can never sit BELOW * the suite default and quietly give the slowest tests in the suite the tightest * ceiling in it. */ export declare const SLOW_TEST_TIMEOUT = 30000; export declare const CLEAN_CLI_HOME: string; export declare function runCli(args: string[], env?: Record): Promise<{ stdout: string; stderr: string; exitCode: number; }>; export declare function runCliInCwd(args: string[], cwd: string, env?: Record): Promise<{ stdout: string; stderr: string; exitCode: number; }>;