export interface PostActivationSettledPaths { keyFilePath?: string; markerPath?: string; } /** * Returns whether the cluster has settled after its post-activation self-restart. * * Predicate: `(NOT activated) OR (marker present)` — identical to the * orchestrator-side probe in shape so the two processes cannot diverge in * interpretation. Local `generacy launch` clusters (no key file) always * return `true`; wizard clusters return `true` once * `entrypoint-post-activation.sh` writes the marker. * * Sync-only, side-effect-free. */ export declare function isPostActivationSettledSync(paths?: PostActivationSettledPaths): boolean; //# sourceMappingURL=post-activation-settled.d.ts.map