import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookDataBankAccountDeleted = { bankAccountID: string; accountID: string; }; /** @internal */ export declare const WebhookDataBankAccountDeleted$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataBankAccountDeleted$Outbound = { bankAccountID: string; accountID: string; }; /** @internal */ export declare const WebhookDataBankAccountDeleted$outboundSchema: z.ZodType; export declare function webhookDataBankAccountDeletedToJSON(webhookDataBankAccountDeleted: WebhookDataBankAccountDeleted): string; export declare function webhookDataBankAccountDeletedFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatabankaccountdeleted.d.ts.map