import { BaseCommand } from './BaseCommand.js'; export interface TestOptions { watch?: boolean; coverage?: boolean; ui?: boolean; run?: boolean; reporter?: string; filter?: string; } export declare class TestCommand extends BaseCommand { execute(options: TestOptions): Promise; private checkTestSetup; private setupTesting; private generateTestUtils; private generateSampleTests; private updatePackageJsonScripts; private runVitest; private runJest; }