import { web3 } from "@coral-xyz/anchor"; type CreatePool = (params: { programId: web3.PublicKey; connection: web3.Connection; accounts: { userPubkey: web3.PublicKey; neverToken: web3.PublicKey; }; }) => Promise<{ ixs: web3.TransactionInstruction[]; signers: web3.Signer[]; }>; export declare const createPool: CreatePool; export {};