import { SolanaUtils } from '.'; export declare const nftOwnerAddress: (solanaUtils: SolanaUtils, userWalletAddress: string) => Promise; export declare const nftCollectionOwnerAddress: (solanaUtils: SolanaUtils, userWalletAddress: string, collectionAddress: string) => Promise; export declare const checkOwnerNFTs: (solanaUtils: SolanaUtils, userWalletAddress: string, collectionAddress: string, nftAddresses: string[]) => Promise<{ status: boolean; message: string; }>;