import { PublicKey, TransactionSignature } from '@solana/web3.js'; import { Wallet } from '../wallet'; import { Connection } from '../Connection'; interface IInstantSaleParams { connection: Connection; wallet: Wallet; auction: PublicKey; store: PublicKey; } interface IInstantSaleResponse { txIds: TransactionSignature[]; } export declare const instantSale: ({ connection, wallet, store, auction, }: IInstantSaleParams) => Promise; export {};