import { PublicKey } from "@solana/web3.js";
export interface AuctionManager {
    key: PublicKey;
    listingAuthority: PublicKey;
    nft: PublicKey;
    updateAuthority: PublicKey;
}
