import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AlertState } from "./alert-state.js"; import { AlertType } from "./alert-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { WebhookDtoSubscription } from "./webhook-dto-subscription.js"; export type WebhookDtoSpendAlertEvent = { alertStatus?: AlertState | undefined; alertType?: AlertType | undefined; currentSpend?: string | undefined; groupId?: string | undefined; subscription?: WebhookDtoSubscription | undefined; subscriptionLineItemId?: string | undefined; threshold?: string | undefined; triggeredAt?: Date | undefined; }; /** @internal */ export declare const WebhookDtoSpendAlertEvent$inboundSchema: z.ZodMiniType; export declare function webhookDtoSpendAlertEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhook-dto-spend-alert-event.d.ts.map