import { ToolResult } from '@hitoshura25/core'; export interface PreflightCheckParams { project_path?: string; } export interface PreflightCheckResult { status: 'ready' | 'missing_dependencies' | 'unsupported_project' | 'invalid_state'; project_path?: string; min_sdk?: number; missing?: string[]; install_commands?: Record; error?: string; current_min_sdk?: number; next?: string; current_state?: string; required_state?: string; message?: string; } export declare function iconPreflightCheck(params: PreflightCheckParams): Promise>; //# sourceMappingURL=preflight.d.ts.map