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