/** * check_security_policy Tool (SR2-5) * * Reads and validates the .codeslick.yml policy file for a repository. * Returns active thresholds, suppressed checks, custom rules, and policy status. * * Design: self-contained — does not import from src/lib/ (tsconfig rootDir boundary). * Uses js-yaml for YAML parsing. Fail-open: absent or invalid config = defaults reported. */ export declare const checkSecurityPolicyTool: { name: string; description: string; readOnlyHint: boolean; inputSchema: { type: string; properties: { policy_path: { type: string; description: string; }; }; required: never[]; }; }; export declare function handleCheckSecurityPolicy(args: Record): Promise<{ content: { type: string; text: string; }[]; }>; //# sourceMappingURL=policy.d.ts.map