import * as z from "zod/v4-mini"; export type CustomersDeleteExternalRequest = { /** * The customer external ID. */ externalId: string; /** * If true, also anonymize the customer's personal data for GDPR compliance. */ anonymize?: boolean | undefined; }; /** @internal */ export type CustomersDeleteExternalRequest$Outbound = { external_id: string; anonymize: boolean; }; /** @internal */ export declare const CustomersDeleteExternalRequest$outboundSchema: z.ZodMiniType; export declare function customersDeleteExternalRequestToJSON(customersDeleteExternalRequest: CustomersDeleteExternalRequest): string; //# sourceMappingURL=customersdeleteexternal.d.ts.map