/** * Tezos Rarible API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { FTAssetType, MTAssetType, NFTAssetType, XTZAssetType } from './'; /** * @type AssetType * * @export */ export declare type AssetType = FTAssetType | MTAssetType | NFTAssetType | XTZAssetType; export declare function AssetTypeFromJSON(json: any): AssetType; export declare function AssetTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetType; export declare function AssetTypeToJSON(value?: AssetType | null): any;