import { PublicKey, TransactionInstruction } from '@solana/web3.js'; import { Fraction } from '../../layouts/fraction'; import { HostFees, MetadataParams } from '../../layouts/config'; export declare function createBasketStateAccountIx(params: { creator: PublicKey; basket: PublicKey; }): TransactionInstruction; export declare function resizeBasketStateIx(params: { basket: PublicKey; }): TransactionInstruction; export declare function createBasketIx(params: { basket: PublicKey; mint: PublicKey; slot: number; creator: PublicKey; host: PublicKey; startPrice: Fraction; hostFees: HostFees; metadataParams: MetadataParams; network: "devnet" | "mainnet"; }): TransactionInstruction;