import { type Result } from '../types/index.js'; import { type RegoEvaluator } from './policy-rego.js'; /** * Load Rego policy from file * * @param file - Path to .rego policy file * @returns Promise> */ export declare function loadPolicy(file: string): Promise>; /** * Load and merge multiple Rego policy files * * @param policyPaths - Array of .rego policy file paths * @returns Promise> */ export declare function loadAndMergePolicies(policyPaths: string[]): Promise>; /** * Clear the policy cache * Useful for testing or when policies are updated */ export declare function clearPolicyCache(): void; //# sourceMappingURL=policy-io.d.ts.map