import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DlpPersonMetadata = { /** * The first name of the person */ firstName?: string | undefined; /** * The user's primary email address */ email?: string | undefined; }; /** @internal */ export declare const DlpPersonMetadata$inboundSchema: z.ZodType; /** @internal */ export type DlpPersonMetadata$Outbound = { firstName?: string | undefined; email?: string | undefined; }; /** @internal */ export declare const DlpPersonMetadata$outboundSchema: z.ZodType; export declare function dlpPersonMetadataToJSON(dlpPersonMetadata: DlpPersonMetadata): string; export declare function dlpPersonMetadataFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=dlppersonmetadata.d.ts.map