import { B as BlindpayApiResponse, N as Network } from '../../index.d-D-hL-9i-.mjs'; import { I as InternalApiClient } from '../../api-client-CGaiOakA.mjs'; type GetBlockchainWalletMessage = string; type GetBlockchainWalletMessageResponse = { message: string; }; type ListBlockchainWalletsInput = string; type ListBlockchainWalletsResponse = Array<{ id: string; name: string; network: Network; address?: string; signature_tx_hash?: string; is_account_abstraction: boolean; customer_id: string; }>; type CreateBlockchainWalletWithAddressInput = { customer_id: string; name: string; network: Network; address: string; }; type CreateBlockchainWalletWithHashInput = { customer_id: string; name: string; network: Network; signature_tx_hash: string; }; type GetBlockchainWalletInput = { customer_id: string; id: string; }; type DeleteBlockchainWalletInput = { customer_id: string; id: string; }; type GetBlockchainWalletResponse = { id: string; name: string; network: Network; address?: string; signature_tx_hash?: string; is_account_abstraction: boolean; customer_id: string; }; type CreateBlockchainWalletResponse = { id: string; name: string; network: Network; address?: string; signature_tx_hash?: string; is_account_abstraction: boolean; customer_id: string; }; type CreateAssetTrustlineInput = string; type CreateAssetTrustlineResponse = { xdr: string; }; type MintUsdbStellarInput = { address: string; amount: string; signedXdr: string; }; type PrepareSolanaDelegationTransactionInput = { token_address: string; amount: string; owner_address: string; }; type PrepareSolanaDelegationTransactionResponse = { success: boolean; transaction: string; }; type MintUsdbSolanaInput = { address: string; amount: string; }; type MintUsdbSolanaResponse = { success: boolean; signature: string; error: string; }; declare function createBlockchainWalletsResource(instanceId: string, client: InternalApiClient): { list(customer_id: ListBlockchainWalletsInput): Promise>; createWithAddress({ customer_id, ...data }: CreateBlockchainWalletWithAddressInput): Promise>; createWithHash({ customer_id, ...data }: CreateBlockchainWalletWithHashInput): Promise>; getWalletMessage(customer_id: GetBlockchainWalletMessage): Promise>; get({ customer_id, id, }: GetBlockchainWalletInput): Promise>; delete({ customer_id, id, }: DeleteBlockchainWalletInput): Promise>; createAssetTrustline(address: CreateAssetTrustlineInput): Promise>; mintUsdbStellar({ ...data }: MintUsdbStellarInput): Promise>; mintUsdbSolana({ ...data }: MintUsdbSolanaInput): Promise>; prepareSolanaDelegationTransaction({ ...data }: PrepareSolanaDelegationTransactionInput): Promise>; }; export { type CreateAssetTrustlineInput, type CreateAssetTrustlineResponse, type CreateBlockchainWalletResponse, type CreateBlockchainWalletWithAddressInput, type CreateBlockchainWalletWithHashInput, type DeleteBlockchainWalletInput, type GetBlockchainWalletInput, type GetBlockchainWalletMessage, type GetBlockchainWalletMessageResponse, type GetBlockchainWalletResponse, type ListBlockchainWalletsInput, type ListBlockchainWalletsResponse, type MintUsdbSolanaInput, type MintUsdbSolanaResponse, type MintUsdbStellarInput, type PrepareSolanaDelegationTransactionInput, type PrepareSolanaDelegationTransactionResponse, createBlockchainWalletsResource };