/** * 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 { GetDataEnumKind, GetDataEnumKindContent, Serializer } from '@metaplex-foundation/umi/serializers'; export type PrintArgs = { __kind: 'V1'; edition: bigint; } | { __kind: 'V2'; edition: bigint; }; export type PrintArgsArgs = { __kind: 'V1'; edition: number | bigint; } | { __kind: 'V2'; edition: number | bigint; }; export declare function getPrintArgsSerializer(): Serializer; export declare function printArgs(kind: 'V1', data: GetDataEnumKindContent): GetDataEnumKind; export declare function printArgs(kind: 'V2', data: GetDataEnumKindContent): GetDataEnumKind; export declare function isPrintArgs(kind: K, value: PrintArgs): value is PrintArgs & { __kind: K; };