import { Rarity } from '../../dapps/rarity'; import { BaseItem } from './base-item'; import { JSONSchema } from '../../validation'; export type StandardProps = { collectionAddress: string; rarity: Rarity; }; export declare const standardProperties: { readonly collectionAddress: { readonly type: "string"; readonly nullable: false; }; readonly rarity: JSONSchema; }; export declare function isStandard(item: T): item is T & StandardProps; //# sourceMappingURL=standard-props.d.ts.map