/// import { AccountInfo, Connection } from '@solana/web3.js'; import BN from 'bn.js'; import { AnyPublicKey, StringPublicKey, Account, Borsh } from '@metaplex-foundation/mpl-core'; import { MetaplexKey } from '../MetaplexProgram'; import { Buffer } from 'buffer'; declare type Args = { recipient: StringPublicKey; amountPaid: BN; }; export declare class PayoutTicketData extends Borsh.Data { static readonly SCHEMA: any; key: MetaplexKey; recipient: StringPublicKey; amountPaid: BN; constructor(args: Args); } export declare class PayoutTicket extends Account { constructor(pubkey: AnyPublicKey, info: AccountInfo); static isCompatible(data: Buffer): boolean; static getPayoutTicketsByRecipient(connection: Connection, recipient: AnyPublicKey): Promise; } export {};