import { BN } from "@project-serum/anchor"; import { PublicKey, TransactionInstruction } from "@solana/web3.js"; /** * Asynchronously creates and returns instructions for transferring native SOL from a source account to a destination account, * and for syncing the native SOL with wrapped SOL. * * @param source - The public key of the source account. * @param destination - The public key of the destination account. * @param amount - The amount of native SOL to be transferred. * * @returns An array of `TransactionInstruction` objects for transferring and syncing native SOL. */ export declare const transferAndSyncNativeSol: (source: PublicKey, destination: PublicKey, amount: BN) => Promise; //# sourceMappingURL=wrapSol.d.ts.map