import { Address, GetMultipleAccountsApi, Rpc } from "@solana/kit"; interface ReverseLookupBatchParams { rpc: Rpc; domainAddresses: Address[]; } /** * Perform a batch reverse lookup for given domain addresses. * * @param params - An object containing the following properties: * - `rpc`: The RPC client to interact with the blockchain. * - `addresses`: The domain addresses to perform the reverse lookup on. * @returns A promise that resolves to a list of human-readable domain names associated with the given addresses, * or undefined if the data is not available. */ export declare function reverseLookupBatch({ rpc, domainAddresses, }: ReverseLookupBatchParams): Promise<(string | undefined)[]>; export {};