/** * Pure Bedrock status reader. * No side effects, no process.env access — receives env as a parameter. */ import { BedrockState } from './types.js'; /** * Reads current Bedrock mode state from the provided environment object. * * Returns: * - enabled: true when all 8 BEDROCK_ENV_VARS are non-empty * - partial: true when some but not all vars are set * - individual var values when present */ export declare function readState(env: NodeJS.ProcessEnv): BedrockState; //# sourceMappingURL=status.d.ts.map