import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DlpSimpleResult } from "./dlpsimpleresult.js"; export type UpdateDlpConfigResponse = { result?: DlpSimpleResult | undefined; /** * The id of the report that was just created and run. */ reportId?: string | undefined; }; /** @internal */ export declare const UpdateDlpConfigResponse$inboundSchema: z.ZodType; export declare function updateDlpConfigResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatedlpconfigresponse.d.ts.map