import { web3 } from "@coral-xyz/anchor"; type UnstakeTokens = (params: { programId: web3.PublicKey; connection: web3.Connection; args: { stakingSeconds: number; neverAmount: number; solAmount: number; usdcAmount: number; usdcFirst?: boolean; }; accounts: { userPubkey: web3.PublicKey; userStakeAccount: web3.PublicKey; ref1User?: web3.PublicKey; ref2User?: web3.PublicKey; neverToken: web3.PublicKey; }; }) => Promise<{ ixs: web3.TransactionInstruction[]; signers: web3.Signer[]; }>; export declare const unstakeTokens: UnstakeTokens; export {};