import type { RuntimePolicy } from "./types.js"; /** * Resolve an optional workspace runtime policy from `.hivemind/state`. * * @param projectRoot - Active OpenCode project directory. * @returns Parsed partial runtime policy, or `undefined` when no policy exists. * @throws {Error} When the policy file exists but is invalid JSON or not an object. * * @example * ```typescript * const policy = resolveWorkspaceRuntimePolicy(process.cwd()); * ``` */ export declare function resolveWorkspaceRuntimePolicy(projectRoot: string): Partial | undefined; //# sourceMappingURL=workspace-runtime-policy.d.ts.map