import { Schema } from "yup"; import { RNftMetadata } from "../rNFT"; import { Media } from "../common"; export declare const bundleMetadataSchema: Schema; export type ItemMetadataLink = { url: string; }; type SellerMetadata = { defaultVersion: number; name: string; description?: string; externalUrl?: string; tokenId?: string; images?: Media[]; contactLinks: { url: string; tag: string; }[]; contactPreference?: string; }; export type BundleMetadata = Omit & { type: "BUNDLE"; bundleUuid: string; seller: SellerMetadata; items: ItemMetadataLink[]; }; export {}; //# sourceMappingURL=index.d.ts.map