import { Record } from "../types/record"; import { PublicKey } from "@solana/web3.js"; export { Validation } from "@bonfida/sns-records"; /** * A map that associates each record type with a public key, known as guardians. */ export declare const GUARDIANS: Map; /** * Set of records that utilize secp256k1 for verification purposes */ export declare const ETH_ROA_RECORDS: Set; export declare const EVM_RECORDS: Set; /** * Set of records that are UTF-8 encoded strings */ export declare const UTF8_ENCODED: Set; /** * Set of records that are self signed i.e signed by the public key contained * in the record itself. */ export declare const SELF_SIGNED: Set;