/** * 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 { Creator, CreatorArgs } from '.'; export type Data = { name: string; symbol: string; uri: string; sellerFeeBasisPoints: number; creators: Option>; }; export type DataArgs = { name: string; symbol: string; uri: string; sellerFeeBasisPoints: number; creators: OptionOrNullable>; }; export declare function getDataSerializer(): Serializer;