import type { PolicyConfigV2 } from './types.js'; /** * Parse a raw JSON object into a PolicyConfigV2. * Pure function — no I/O. Validates with Zod, normalizes addresses and selectors to lowercase. */ export declare function parsePolicyConfig(raw: Record): PolicyConfigV2; /** * Load and parse a policy configuration from a JSON file. * Convenience wrapper around parsePolicyConfig for Node.js file I/O. */ export declare function loadPolicyConfigFromFile(path: string): PolicyConfigV2;