/// import { Account, Borsh, AnyPublicKey, StringPublicKey } from '@metaplex-foundation/mpl-core'; import { AccountInfo, PublicKey } from '@solana/web3.js'; import BN from 'bn.js'; import { Buffer } from 'buffer'; declare type Args = { bidderPubkey: StringPublicKey; auctionPubkey: StringPublicKey; lastBid: BN; lastBidTimestamp: BN; cancelled: boolean; }; export declare class BidderMetadataData extends Borsh.Data { static readonly SCHEMA: Map; bidderPubkey: StringPublicKey; auctionPubkey: StringPublicKey; lastBid: BN; lastBidTimestamp: BN; cancelled: boolean; } export declare class BidderMetadata extends Account { static readonly DATA_SIZE: number; constructor(key: AnyPublicKey, info: AccountInfo); static isCompatible(data: Buffer): boolean; static getPDA(auction: AnyPublicKey, bidder: AnyPublicKey): Promise; } export {};