import { Address, GetAccountInfoApi, GetMultipleAccountsApi, Rpc } from "@solana/kit"; export interface VrfPoolAccountDataFields { authority: Address; queue: Address; escrow: Address; minInterval: number; maxRows: number; size: number; idx: number; stateBump: number; ebuf: Array; } export interface VrfPoolAccountDataJSON { authority: string; queue: string; escrow: string; minInterval: number; maxRows: number; size: number; idx: number; stateBump: number; ebuf: Array; } export declare class VrfPoolAccountData { readonly authority: Address; readonly queue: Address; readonly escrow: Address; readonly minInterval: number; readonly maxRows: number; readonly size: number; readonly idx: number; readonly stateBump: number; readonly ebuf: Array; static readonly discriminator: Buffer; static readonly layout: import("buffer-layout").Layout; constructor(fields: VrfPoolAccountDataFields); static fetch(rpc: Rpc, address: Address, programId?: Address): Promise; static fetchMultiple(rpc: Rpc, addresses: Address[], programId?: Address): Promise>; static decode(data: Buffer): VrfPoolAccountData; toJSON(): VrfPoolAccountDataJSON; static fromJSON(obj: VrfPoolAccountDataJSON): VrfPoolAccountData; } //# sourceMappingURL=VrfPoolAccountData.d.ts.map