import { Borsh, Transaction, StringPublicKey } from '@metaplex-foundation/mpl-core'; import { PublicKey, TransactionCtorFields } from '@solana/web3.js'; import BN from 'bn.js'; import { PriceFloor } from '../accounts/Auction'; import { Args as CreateAuctionArgsType, WinnerLimit } from './CreateAuction'; declare type Args = CreateAuctionArgsType & { instantSalePrice: BN | null; name: number[] | null; }; export declare class CreateAuctionV2Args extends Borsh.Data { static readonly SCHEMA: Map; instruction: number; winners: WinnerLimit; endAuctionAt?: BN; auctionGap?: BN; tokenMint: StringPublicKey; authority: StringPublicKey; resource: StringPublicKey; priceFloor: PriceFloor; tickSize?: BN; gapTickSizePercentage?: number; instantSalePrice?: BN; name?: number[]; } declare type CreateAuctionV2Params = { auction: PublicKey; auctionExtended: PublicKey; creator: PublicKey; args: Args; }; export declare class CreateAuctionV2 extends Transaction { constructor(options: TransactionCtorFields, params: CreateAuctionV2Params); } export {};