import { Connection, PublicKey } from "@solana/web3.js"; /** * This function can be used to create a SOL record (V1) * @param connection The Solana RPC connection object * @param domain The .sol domain name * @param content The content of the SOL record i.e the public key to store as destination of the domain * @param signer The signer of the SOL record i.e the owner of the domain * @param signature The signature of the record * @param payer The fee payer of the transaction * @returns */ export declare const createSolRecordInstruction: (connection: Connection, domain: string, content: PublicKey, signer: PublicKey, signature: Uint8Array, payer: PublicKey) => Promise;