///
///
import { Record } from "../types/record";
import { Connection } from "@solana/web3.js";
/**
*
* This function verifies the right of association of a record.
* Note: This function does not verify if the record is stale.
* Users must verify staleness in addition to the right of association.
* @param {Connection} connection - The Solana RPC connection object
* @param {Record} record - The record to be verified.
* @param {string} domain - The domain associated with the record.
* @param {Buffer} verifier - The optional verifier to be used in the verification process.
* @returns {Promise} - Returns a promise that resolves to a boolean indicating whether the record has the right of association.
*/
export declare const verifyRightOfAssociation: (connection: Connection, record: Record, domain: string, verifier?: Buffer) => Promise;