import type { RigType } from './executors/types'; interface PreflightResult { ok: boolean; rigId?: string; rigType?: RigType; teamId?: string; agents?: Array<{ id: string; name: string; slug: string; capabilities?: string[]; email_address?: string; }>; claudeMd?: string; } /** * Run all preflight checks before starting the rig. * Validates connectivity, tools, and sets up the local environment. */ export declare function runPreflight(options: { apiUrl: string; rigKey: string; projectPath: string; rigType?: RigType; }): Promise; export {};