///
import * as beet from '@metaplex-foundation/beet';
import * as web3 from '@solana/web3.js';
export declare type ClaimCountArgs = {
count: beet.bignum;
claimant: web3.PublicKey;
};
export declare class ClaimCount implements ClaimCountArgs {
readonly count: beet.bignum;
readonly claimant: web3.PublicKey;
private constructor();
static fromArgs(args: ClaimCountArgs): ClaimCount;
static fromAccountInfo(accountInfo: web3.AccountInfo, offset?: number): [ClaimCount, number];
static fromAccountAddress(connection: web3.Connection, address: web3.PublicKey): Promise;
static deserialize(buf: Buffer, offset?: number): [ClaimCount, number];
serialize(): [Buffer, number];
static get byteSize(): number;
static getMinimumBalanceForRentExemption(connection: web3.Connection, commitment?: web3.Commitment): Promise;
static hasCorrectByteSize(buf: Buffer, offset?: number): boolean;
pretty(): {
count: beet.bignum;
claimant: string;
};
}
export declare const claimCountBeet: beet.BeetStruct;