/** * 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 BurnArgs = { __kind: 'V1'; amount: bigint; }; export type BurnArgsArgs = { __kind: 'V1'; amount?: number | bigint; }; export declare function getBurnArgsSerializer(): Serializer; export declare function burnArgs(kind: 'V1', data: GetDataEnumKindContent): GetDataEnumKind; export declare function isBurnArgs(kind: K, value: BurnArgs): value is BurnArgs & { __kind: K; };