/** * This code was AUTOGENERATED using the kinobi library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun kinobi to update it. * * @see https://github.com/metaplex-foundation/kinobi */ import { Option, OptionOrNullable } from '@metaplex-foundation/umi'; import { Serializer } from '@metaplex-foundation/umi/serializers'; import { Collection, CollectionArgs, Creator, CreatorArgs, Uses, UsesArgs } from '.'; export type DataV2 = { name: string; symbol: string; uri: string; sellerFeeBasisPoints: number; creators: Option>; collection: Option; uses: Option; }; export type DataV2Args = { name: string; symbol: string; uri: string; sellerFeeBasisPoints: number; creators: OptionOrNullable>; collection: OptionOrNullable; uses: OptionOrNullable; }; export declare function getDataV2Serializer(): Serializer;