/// import * as web3 from '@solarti/web3.js'; import * as beet from '@miraplex/beet'; import * as beetMiraland from '@miraplex/beet-miraland'; import { Key } from '../types/Key'; import { Reservation } from '../types/Reservation'; export type ReservationListV2Args = { key: Key; masterEdition: web3.PublicKey; supplySnapshot: beet.COption; reservations: Reservation[]; totalReservationSpots: beet.bignum; currentReservationSpots: beet.bignum; }; export declare class ReservationListV2 implements ReservationListV2Args { readonly key: Key; readonly masterEdition: web3.PublicKey; readonly supplySnapshot: beet.COption; readonly reservations: Reservation[]; readonly totalReservationSpots: beet.bignum; readonly currentReservationSpots: beet.bignum; private constructor(); static fromArgs(args: ReservationListV2Args): ReservationListV2; static fromAccountInfo(accountInfo: web3.AccountInfo, offset?: number): [ReservationListV2, number]; static fromAccountAddress(connection: web3.Connection, address: web3.PublicKey, commitmentOrConfig?: web3.Commitment | web3.GetAccountInfoConfig): Promise; static gpaBuilder(programId?: web3.PublicKey): beetMiraland.GpaBuilder; static deserialize(buf: Buffer, offset?: number): [ReservationListV2, number]; serialize(): [Buffer, number]; static byteSize(args: ReservationListV2Args): number; static getMinimumBalanceForRentExemption(args: ReservationListV2Args, connection: web3.Connection, commitment?: web3.Commitment): Promise; pretty(): { key: string; masterEdition: string; supplySnapshot: beet.bignum; reservations: Reservation[]; totalReservationSpots: number | { toNumber: () => number; }; currentReservationSpots: number | { toNumber: () => number; }; }; } export declare const reservationListV2Beet: beet.FixableBeetStruct;