import type * as Square from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { AchDetails } from "./AchDetails"; import { Error_ } from "./Error_"; export declare const BankAccountPaymentDetails: core.serialization.ObjectSchema; export declare namespace BankAccountPaymentDetails { interface Raw { bank_name?: (string | null | undefined) | null; transfer_type?: (string | null | undefined) | null; account_ownership_type?: (string | null | undefined) | null; fingerprint?: (string | null | undefined) | null; country?: (string | null | undefined) | null; statement_description?: (string | null | undefined) | null; ach_details?: AchDetails.Raw | null; errors?: (Error_.Raw[] | null | undefined) | null; } }