///
import { AnyPublicKey, StringPublicKey, Account, Borsh } from '@metaplex-foundation/mpl-core';
import { MetaplexKey } from '../MetaplexProgram';
import { AccountInfo, Connection, PublicKey } from '@solana/web3.js';
import { WhitelistedCreator } from './WhitelistedCreator';
import { AuctionManager } from './AuctionManager';
import { Buffer } from 'buffer';
declare type Args = {
public: boolean;
auctionProgram: StringPublicKey;
tokenVaultProgram: StringPublicKey;
tokenMetadataProgram: StringPublicKey;
tokenProgram: StringPublicKey;
};
export declare class StoreData extends Borsh.Data {
static readonly SCHEMA: any;
key: MetaplexKey;
public: boolean;
auctionProgram: StringPublicKey;
tokenVaultProgram: StringPublicKey;
tokenMetadataProgram: StringPublicKey;
tokenProgram: StringPublicKey;
constructor(args: Args);
}
export declare class Store extends Account {
constructor(pubkey: AnyPublicKey, info: AccountInfo);
static isCompatible(data: Buffer): boolean;
static getPDA(owner: AnyPublicKey): Promise;
getWhitelistedCreators(connection: Connection): Promise;
getAuctionManagers(connection: Connection): Promise;
}
export {};