import { R as Rail, B as BlindpayApiResponse } from '../../index.d-D-hL-9i-.mjs'; import { I as InternalApiClient } from '../../api-client-CGaiOakA.mjs'; type BankDetailKey = "type" | "name" | "pix_key" | "beneficiary_name" | "routing_number" | "account_number" | "account_type" | "account_class" | "address_line_1" | "address_line_2" | "city" | "state_province_region" | "country" | "postal_code" | "checkbook_account_id" | "checkbook_user_key" | "spei_protocol" | "spei_institution_code" | "spei_clabe" | "transfers_type" | "transfers_account" | "ach_cop_beneficiary_first_name" | "ach_cop_beneficiary_last_name" | "ach_cop_document_id" | "ach_cop_document_type" | "ach_cop_email" | "ach_cop_bank_code" | "ach_cop_bank_account" | "swift_code_bic" | "swift_account_holder_name" | "swift_account_number_iban" | "swift_beneficiary_address_line_1" | "swift_beneficiary_address_line_2" | "swift_beneficiary_country" | "swift_beneficiary_city" | "swift_beneficiary_state_province_region" | "swift_beneficiary_postal_code" | "swift_bank_name" | "swift_bank_address_line_1" | "swift_bank_address_line_2" | "swift_bank_country" | "swift_bank_city" | "swift_bank_state_province_region" | "swift_bank_postal_code" | "swift_intermediary_bank_swift_code_bic" | "swift_intermediary_bank_account_number_iban" | "swift_intermediary_bank_name" | "swift_intermediary_bank_country"; type GetBankDetailsResponse = Array<{ label: string; regex: string; key: BankDetailKey; items?: Array<{ label: string; value: string; is_active?: boolean; }>; required: boolean; }>; type GetRailsResponse = Array<{ label: string; value: Rail; country: string; }>; type GetNaicsCodesResponse = Array<{ label: string; value: string; }>; type GetSwiftCodeBankDetailsInput = string; type GetSwiftCodeBankDetailsResponse = Array<{ id: string; bank: string; city: string; branch: string; swiftCode: string; swiftCodeLink: string; country: string; countrySlug: string; }>; declare function createAvailableResource(client: InternalApiClient): { getBankDetails(rail: Rail): Promise>; getRails(): Promise>; getNaicsCodes(): Promise>; getSwiftCodeBankDetails(swift: GetSwiftCodeBankDetailsInput): Promise>; }; export { type BankDetailKey, type GetBankDetailsResponse, type GetNaicsCodesResponse, type GetRailsResponse, type GetSwiftCodeBankDetailsInput, type GetSwiftCodeBankDetailsResponse, createAvailableResource };