import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Evidence = { dataPath?: string | undefined; exists?: boolean | undefined; foundValue?: string | undefined; literalMatch?: string | undefined; negative?: boolean | undefined; proprietary?: boolean | undefined; regex?: string | undefined; semverExpression?: string | undefined; }; /** @internal */ export declare const Evidence$inboundSchema: z.ZodType; export declare function evidenceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=evidence.d.ts.map