export interface SelfCheckResult { ok: true; version: string; packageRoot: string; launchSpecValidated: boolean; nativeModulesValidated: boolean; } export declare function getCurrentPackageRoot(): string; export declare function runSelfCheck(options?: { packageRoot?: string; expectedVersion?: string; launchSpecPath?: string; validateNativeModules?: boolean; }): SelfCheckResult;