import { Address, IInstruction } from "@solana/kit"; interface CreateReverseParams { domainAddress: Address; domain: string; payer: Address; parentAddress?: Address; parentOwner?: Address; } /** * Creates a reverse lookup record for the specified domain. * * @param params - An object containing the following properties: * - `domainAddress`: The address of the domain for which the reverse lookup record is created. * - `domain`: The domain name to be associated with the reverse lookup record. * - `payer`: The address funding the creation of the reverse lookup record. * - `parentAddress`: (Optional) The address of the parent domain, if applicable. * - `parentOwner`: (Optional) The address of the parent domain owner, if applicable. * @returns A promise which resolves to the create reverse lookup instruction. */ export declare const createReverse: ({ domainAddress, domain, payer, parentAddress, parentOwner, }: CreateReverseParams) => Promise; export {};