///
///
import { Record } from "../types/record";
/**
* This function deserializes a buffer based on the type of record it corresponds to
* If the record is not properly serialized according to SNS-IP 1 this function will throw an error
* @param content The content to deserialize
* @param record The type of record
* @returns The deserialized content as a string
*/
export declare const deserializeRecordV2Content: (content: Buffer, record: Record) => string;