import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookDataRepresentativeUpdated = { accountID: string; representativeID: string; }; /** @internal */ export declare const WebhookDataRepresentativeUpdated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataRepresentativeUpdated$Outbound = { accountID: string; representativeID: string; }; /** @internal */ export declare const WebhookDataRepresentativeUpdated$outboundSchema: z.ZodType; export declare function webhookDataRepresentativeUpdatedToJSON(webhookDataRepresentativeUpdated: WebhookDataRepresentativeUpdated): string; export declare function webhookDataRepresentativeUpdatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatarepresentativeupdated.d.ts.map