import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Terms that are allow-listed during the scans. If any finding picked up by a rule exactly matches a term in the allow-list, it will not be counted as a violation. */ export type AllowlistOptions = { /** * list of words and phrases to consider as whitelisted content */ terms?: Array | undefined; }; /** @internal */ export declare const AllowlistOptions$inboundSchema: z.ZodType; /** @internal */ export type AllowlistOptions$Outbound = { terms?: Array | undefined; }; /** @internal */ export declare const AllowlistOptions$outboundSchema: z.ZodType; export declare function allowlistOptionsToJSON(allowlistOptions: AllowlistOptions): string; export declare function allowlistOptionsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=allowlistoptions.d.ts.map