import * as beet from '@miraplex/beet'; import * as web3 from '@solarti/web3.js'; import { Creator } from './Creator'; import { TokenStandard } from './TokenStandard'; import { Collection } from './Collection'; import { Uses } from './Uses'; import { CollectionDetails } from './CollectionDetails'; export type AssetData = { name: string; symbol: string; uri: string; sellerFeeBasisPoints: number; creators: beet.COption; primarySaleHappened: boolean; isMutable: boolean; tokenStandard: TokenStandard; collection: beet.COption; uses: beet.COption; collectionDetails: beet.COption; ruleSet: beet.COption; }; export declare const assetDataBeet: beet.FixableBeetArgsStruct;