export declare const CLI_PATH: string; export declare const EXPECTED_ALL_SKILL_COUNT: number; export declare const EXPECTED_BASIC_SKILL_COUNT: 17; export declare const PACKAGE_VERSION: string; export declare const SLOW_TEST_TIMEOUT = 15000; 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; }>;