/** * 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 { PublicKey } from '@metaplex-foundation/umi'; import { Serializer } from '@metaplex-foundation/umi/serializers'; export type Reservation = { address: PublicKey; spotsRemaining: bigint; totalSpots: bigint; }; export type ReservationArgs = { address: PublicKey; spotsRemaining: number | bigint; totalSpots: number | bigint; }; export declare function getReservationSerializer(): Serializer;