import { Address } from "@solana/kit"; interface GetNftMintParams { domainAddress: Address; } /** * Retrieves the mint address of a tokenized domain. * * @param params - An object containing the following properties: * - `domainAddress`: The address of the domain to derive the NFT mint from. * @returns A promise that resolves to the mint address of the NFT. */ export declare const getNftMint: ({ domainAddress }: GetNftMintParams) => Promise>; export {};