import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
/**
* This is used by Moov.js with a Plaid reseller relationship. The details of a Plaid link integration for a linked funding source.
*
* @remarks
*
* You can simulate linking bank accounts with Plaid in test mode. See our [test mode](https://docs.moov.io/guides/get-started/test-mode/#plaid)
* guide for more information.
*
* Plaid's `sandbox` environment - (requires Plaid reseller setup with Moov). When linking a bank account to a `sandbox` account using a Plaid
* public token it will utilize Plaid's sandbox environment. The Plaid public token provided must be generated from Plaid's sandbox environment.
* Please see Plaid's sandbox documentation for more
* details.
*/
export type PlaidLinkIntegration = {
publicToken: string;
};
/** @internal */
export declare const PlaidLinkIntegration$inboundSchema: z.ZodType;
/** @internal */
export type PlaidLinkIntegration$Outbound = {
publicToken: string;
};
/** @internal */
export declare const PlaidLinkIntegration$outboundSchema: z.ZodType;
export declare function plaidLinkIntegrationToJSON(plaidLinkIntegration: PlaidLinkIntegration): string;
export declare function plaidLinkIntegrationFromJSON(jsonString: string): SafeParseResult;
//# sourceMappingURL=plaidlinkintegration.d.ts.map