import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The details of a Plaid processor integration for a linked funding source. * * @remarks * * `sandbox` - When linking a bank account to a `sandbox` account using a Plaid processor token a default bank account * response will be used. The following default data will be used to generate the bank account in this flow: * * ``` * RoutingNumber: "011401533", * AccountNumber: "1111222233330000", * AccountType: "checking", * Mask: "0000" * ``` */ export type PlaidIntegration = { token: string; }; /** @internal */ export declare const PlaidIntegration$inboundSchema: z.ZodType; /** @internal */ export type PlaidIntegration$Outbound = { token: string; }; /** @internal */ export declare const PlaidIntegration$outboundSchema: z.ZodType; export declare function plaidIntegrationToJSON(plaidIntegration: PlaidIntegration): string; export declare function plaidIntegrationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=plaidintegration.d.ts.map