/** * Unclaimed environment warning module. * * Shows a one-line stderr warning when the active environment is unclaimed. * On first run, checks if the environment was claimed externally (e.g. via * browser) and updates the local config if so. * Never throws — all errors are caught to avoid blocking management commands. */ /** * Show a warning if the active environment is unclaimed. * Non-blocking — never throws. */ export declare function warnIfUnclaimed(): Promise; /** Reset session state (for testing) */ export declare function resetUnclaimedWarningState(): void;