import type { ApiClient } from '../client.js'; import type { DeveloperProject, PreflightCheck } from '../developer-contract.js'; export declare const PREFLIGHT_OPERATIONS: readonly ["preview", "hosted-deploy", "github", "cloudflare", "shopify", "android"]; /** Check only host binaries relevant to this operation; never execute project code. */ export declare function localPreflightChecks(kind: string, operation: string): Promise; /** Retain local results even when authentication or remote advisory checks are unavailable. */ export declare function runDeveloperPreflight(options: { kind: string; operation: string; client?: ApiClient; configurationError?: string; }): Promise<{ status: string; checks: PreflightCheck[]; project?: DeveloperProject; }>; //# sourceMappingURL=developer-preflight.d.ts.map