declare module '@solana/spl-token-swap' { import {Buffer} from 'buffer'; import {Layout} from 'buffer-layout'; import { PublicKey, TransactionInstruction, TransactionSignature, Connection, Account, } from '@solana/web3.js'; import BN from 'bn.js'; // === client/token-swap.js === export class Numberu64 extends BN { toBuffer(): Buffer; static fromBuffer(buffer: Buffer): Numberu64; } export type TokenSwapInfo = { nonce: number; tokenAccountA: PublicKey; tokenAccountB: PublicKey; tokenPool: PublicKey; feesNumerator: Numberu64; feesDenominator: Numberu64; feeRatio: number; }; export const TokenSwapLayout: Layout; export class TokenSwap { constructor( connection: Connection, tokenSwap: PublicKey, programId: PublicKey, payer: Account, ); static getMinBalanceRentForExemptTokenSwap( connection: Connection, ): Promise; static createInitSwapInstruction( tokenSwapAccount: Account, authority: PublicKey, nonce: number, tokenAccountA: PublicKey, tokenAccountB: PublicKey, tokenPool: PublicKey, tokenAccountPool: PublicKey, tokenProgramId: PublicKey, swapProgramId: PublicKey, feeNumerator: number, feeDenominator: number, ): TransactionInstruction; static createTokenSwap( connection: Connection, payer: Account, tokenSwapAccount: Account, authority: PublicKey, tokenAccountA: PublicKey, tokenAccountB: PublicKey, tokenPool: PublicKey, tokenAccountPool: PublicKey, tokenProgramId: PublicKey, nonce: number, feeNumerator: number, feeDenominator: number, swapProgramId: PublicKey, ): Promise; getInfo(): Promise; swap( authority: PublicKey, source: PublicKey, swapSource: PublicKey, swapDestination: PublicKey, destination: PublicKey, tokenProgramId: PublicKey, amount: number | Numberu64, ): Promise; static swapInstruction( tokenSwap: PublicKey, authority: PublicKey, source: PublicKey, swapSource: PublicKey, swapDestination: PublicKey, destination: PublicKey, swapProgramId: PublicKey, tokenProgramId: PublicKey, amount: number | Numberu64, ): TransactionInstruction; deposit( authority: PublicKey, sourceA: PublicKey, sourceB: PublicKey, intoA: PublicKey, intoB: PublicKey, poolToken: PublicKey, poolAccount: PublicKey, tokenProgramId: PublicKey, amount: number | Numberu64, ): Promise; static depositInstruction( tokenSwap: PublicKey, authority: PublicKey, sourceA: PublicKey, sourceB: PublicKey, intoA: PublicKey, intoB: PublicKey, poolToken: PublicKey, poolAccount: PublicKey, swapProgramId: PublicKey, tokenProgramId: PublicKey, amount: number | Numberu64, ): TransactionInstruction; withdraw( authority: PublicKey, poolMint: PublicKey, sourcePoolAccount: PublicKey, fromA: PublicKey, fromB: PublicKey, userAccountA: PublicKey, userAccountB: PublicKey, tokenProgramId: PublicKey, amount: number | Numberu64, ): Promise; static withdrawInstruction( tokenSwap: PublicKey, authority: PublicKey, poolMint: PublicKey, sourcePoolAccount: PublicKey, fromA: PublicKey, fromB: PublicKey, userAccountA: PublicKey, userAccountB: PublicKey, swapProgramId: PublicKey, tokenProgramId: PublicKey, amount: number | Numberu64, ): TransactionInstruction; } }