import { ToolResult } from '@hitoshura25/core'; export interface RunTestsParams { project_path?: string; module?: string; build_type?: 'debug' | 'release'; test_filter?: string; } export interface TestFailure { class_name: string; method_name: string; message: string; stack_trace?: string; } export interface RunTestsResult { total: number; passed: number; failed: number; skipped: number; duration_seconds: number; failures: TestFailure[]; } export declare function runAndroidTests(params: RunTestsParams): Promise>; //# sourceMappingURL=run-android-tests.d.ts.map