import { Connection } from "@solana/web3.js"; import { Record } from "../types/record"; /** * This function verifies the staleness of a record. * @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. * @returns {Promise} - Returns a promise that resolves to a boolean indicating whether the record is stale. */ export declare const verifyStaleness: (connection: Connection, record: Record, domain: string) => Promise;