import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookDataInvoiceCreated = { accountID: string; invoiceID: string; }; /** @internal */ export declare const WebhookDataInvoiceCreated$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataInvoiceCreated$Outbound = { accountID: string; invoiceID: string; }; /** @internal */ export declare const WebhookDataInvoiceCreated$outboundSchema: z.ZodType; export declare function webhookDataInvoiceCreatedToJSON(webhookDataInvoiceCreated: WebhookDataInvoiceCreated): string; export declare function webhookDataInvoiceCreatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatainvoicecreated.d.ts.map