import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DlpReport } from "./dlpreport.js"; export type CreateDlpReportResponse = { /** * Full policy information that will be used for scans. */ report?: DlpReport | undefined; }; /** @internal */ export declare const CreateDlpReportResponse$inboundSchema: z.ZodType; export declare function createDlpReportResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createdlpreportresponse.d.ts.map