import { GetAccountInfoApi, GetTokenLargestAccountsApi, Rpc } from "@solana/kit"; interface GetDomainOwnerParams { rpc: Rpc; domain: string; } /** * Retrieves the owner of the specified domain. If the domain is tokenized, * the NFT's owner is returned; otherwise, the registry owner is returned. * * @param params - An object containing the following properties: * - `rpc`: An RPC interface implementing GetAccountInfoApi and GetTokenLargestAccountsApi. * - `domain`: The domain whose owner is to be retrieved. * @returns A promise that resolves to the owner of the domain. */ export declare const getDomainOwner: ({ rpc, domain }: GetDomainOwnerParams) => Promise; export {};