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