export declare enum CandyShopErrorType { IncorrectProgramId = "IncorrectProgramId", TransactionFailed = "TransactionFailed", InsufficientBalance = "InsufficientBalance", NFTUnavailable = "NFTUnavailable", BuyerOwnsListing = "BuyerOwnsListing", InvalidNFTMetadata = "InvalidNFTMetadata", SellerATACannotHaveDelegate = "SellerATACannotHaveDelegate", BuyerATACannotHaveDelegate = "BuyerATACannotHaveDelegate", TradeStateExists = "TradeStateExists", NonShopOwner = "NonShopOwner", AuctionExists = "AuctionExists", AuctionDoesNotExist = "AuctionDoesNotExist", BidDoesNotExist = "BidDoesNotExist", InvalidAuctionCreationParams = "InvalidAuctionCreationParams", CannotCancel = "CannotCancel", BidTooHigh = "BidTooHigh", BidTooLow = "BidTooLow", NotWithinBidPeriod = "NotWithinBidPeriod", AuctionHasNoBids = "AuctionHasNoBids", CannotWithdraw = "CannotWithdraw", BuyNowUnavailable = "BuyNowUnavailable", AuctionNotOver = "AuctionNotOver", InsufficientFeeAccountBalance = "InsufficientFeeAccountBalance", TooManyCreators = "TooManyCreators", CandyShopDoesNotExist = "CandyShopDoesNotExist", InvalidTreasuryMint = "InvalidTreasuryMint", InvalidNftOwner = "InvalidNftOwner", IncorrectCandyShopType = "IncorrectCandyShopType", VaultDoesNotExist = "VaultDoesNotExist", NotWithinSalesPeriod = "NotWithinSalesPeriod", DropNotRedeemable = "DropNotRedeemable", ExceedDropMaxAllowedSupply = "ExceedDropMaxAllowedSupply", NotReachable = "NotReachable", FailToFetchOnchainAccount = "FailToFetchOnchainAccount", InvalidDropStartTime = "InvalidDropStartTime", InvalidDropWhitelistTime = "InvalidDropWhitelistTime", MissingExtensionSetting = "MissingExtensionSetting", InvalidExtensionSettings = "InvalidExtensionSettings", InvalidAuctionBiddingPeriod = "InvalidAuctionBiddingPeriod", NodeRequestFailed = "NodeRequestFailed", EditionSaleCompleted = "EdtionSaleCompleted" } export declare const CandyShopErrorMsgMap: { IncorrectProgramId: string; TransactionFailed: string; InsufficientBalance: string; NFTUnavailable: string; BuyerOwnsListing: string; InvalidNFTMetadata: string; SellerATACannotHaveDelegate: string; BuyerATACannotHaveDelegate: string; TradeStateExists: string; NonShopOwner: string; AuctionExists: string; AuctionDoesNotExist: string; BidDoesNotExist: string; AuctionHasNoBids: string; BuyNowUnavailable: string; CannotCancel: string; BidTooHigh: string; BidTooLow: string; NotWithinBidPeriod: string; CannotWithdraw: string; InvalidAuctionCreationParams: string; AuctionNotOver: string; InsufficientFeeAccountBalance: string; TooManyCreators: string; CandyShopDoesNotExist: string; InvalidTreasuryMint: string; InvalidNftOwner: string; IncorrectCandyShopType: string; VaultDoesNotExist: string; NotWithinSalesPeriod: string; DropNotRedeemable: string; ExceedDropMaxAllowedSupply: string; NotReachable: string; FailToFetchOnchainAccount: string; InvalidDropStartTime: string; InvalidDropWhitelistTime: string; InvalidExtensionSettings: string; MissingExtensionSetting: string; InvalidAuctionBiddingPeriod: string; NodeRequestFailed: string; EdtionSaleCompleted: string; }; export declare class CandyShopError extends Error { type: CandyShopErrorType; constructor(type: CandyShopErrorType); }