import { PublicKey } from "@solana/web3.js"; import { Record } from "../types/record"; import { NameRegistryState } from "../state"; /** * This function can be used to deserialize the content of a record (V1). If the content is invalid it will throw an error * @param registry The name registry state object of the record being deserialized * @param record The record enum being deserialized * @param recordKey The public key of the record being deserialized * @returns */ export declare const deserializeRecord: (registry: NameRegistryState | undefined, record: Record, recordKey: PublicKey) => string | undefined;