import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookBillingStatementCreated = { statementID: string; }; /** @internal */ export declare const WebhookBillingStatementCreated$inboundSchema: z.ZodType; /** @internal */ export type WebhookBillingStatementCreated$Outbound = { statementID: string; }; /** @internal */ export declare const WebhookBillingStatementCreated$outboundSchema: z.ZodType; export declare function webhookBillingStatementCreatedToJSON(webhookBillingStatementCreated: WebhookBillingStatementCreated): string; export declare function webhookBillingStatementCreatedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookbillingstatementcreated.d.ts.map