/** * Security Framework — shared types. */ import { z } from "zod"; export declare const SecurityActionEnum: z.ZodEnum<["assess", "harden", "model", "audit"]>; export type SecurityAction = z.infer; export declare const SecurityInputSchema: z.ZodObject<{ action: z.ZodEnum<["assess", "harden", "model", "audit"]>; codeContext: z.ZodOptional; language: z.ZodOptional; framework: z.ZodOptional; securityFocus: z.ZodOptional>; complianceStandards: z.ZodOptional, "many">>; riskTolerance: z.ZodDefault>>; includeMitigations: z.ZodDefault>; includeReferences: z.ZodDefault>; }, "strip", z.ZodTypeAny, { action: "model" | "assess" | "harden" | "audit"; includeReferences: boolean; riskTolerance: "low" | "medium" | "high"; includeMitigations: boolean; codeContext?: string | undefined; language?: string | undefined; securityFocus?: "vulnerability-analysis" | "security-hardening" | "compliance-check" | "threat-modeling" | "penetration-testing" | undefined; complianceStandards?: ("OWASP-Top-10" | "NIST-Cybersecurity-Framework" | "ISO-27001" | "SOC-2" | "GDPR" | "HIPAA" | "PCI-DSS")[] | undefined; framework?: string | undefined; }, { action: "model" | "assess" | "harden" | "audit"; codeContext?: string | undefined; includeReferences?: boolean | undefined; language?: string | undefined; securityFocus?: "vulnerability-analysis" | "security-hardening" | "compliance-check" | "threat-modeling" | "penetration-testing" | undefined; complianceStandards?: ("OWASP-Top-10" | "NIST-Cybersecurity-Framework" | "ISO-27001" | "SOC-2" | "GDPR" | "HIPAA" | "PCI-DSS")[] | undefined; framework?: string | undefined; riskTolerance?: "low" | "medium" | "high" | undefined; includeMitigations?: boolean | undefined; }>; export type SecurityInput = z.infer; //# sourceMappingURL=types.d.ts.map