import type { GenericAddress } from "../types/address.js"; import type { FolksChainId } from "../types/chain.js"; import type { AccountId, LoanId, LoanName, Nonce } from "../types/lending.js"; export declare function isAccountId(accountId: AccountId): boolean; export declare function buildAccountId(addr: GenericAddress, chainId: FolksChainId, nonce: Nonce): AccountId; export declare function buildLoanId(accountId: AccountId, nonce: Nonce): LoanId; export declare function convertStringToLoanName(name: string): LoanName;