import { web3 } from "@coral-xyz/anchor"; import { BaseToken } from "../../types"; type BuyAllocation = (params: { programId: web3.PublicKey; connection: web3.Connection; args: { amountOfTickets: number; wsolAmount?: number; baseToken: BaseToken; }; accounts: { user: web3.PublicKey; tokenMint: web3.PublicKey; admin: web3.PublicKey; }; }) => Promise<{ ixs: web3.TransactionInstruction[]; signers: web3.Signer[]; }>; export declare const buyAllocation: BuyAllocation; export {};