///
///
import { Buffer } from "buffer";
import { PublicKey } from "@solana/web3.js";
/**
* This function can be used to build the content of a SOL record
* @param content The public key being stored in the SOL record
* @param recordKey The record public key
* @param signer The signer of the record i.e the domain owner
* @param signature The signature of the record's content
* @returns
*/
export declare const serializeSolRecord: (content: PublicKey, recordKey: PublicKey, signer: PublicKey, signature: Uint8Array) => Buffer;