export interface PreflightResult { ok: boolean; defaultBranch?: string; stashed?: boolean; error?: string; } export declare function runPreflightChecks(projectRoot: string, featureName: string, emitProgress?: (toolName: string, line: string) => void): Promise;