/// import { PublicKey, Connection } from "@solana/web3.js"; export interface ScopeChainAccountFields { chainArray: Array>; } export interface ScopeChainAccountJSON { chainArray: Array>; } export declare class ScopeChainAccount { readonly chainArray: Array>; static readonly discriminator: Buffer; static readonly layout: any; constructor(fields: ScopeChainAccountFields); static fetch(c: Connection, address: PublicKey): Promise; static fetchMultiple(c: Connection, addresses: PublicKey[]): Promise>; static decode(data: Buffer): ScopeChainAccount; toJSON(): ScopeChainAccountJSON; static fromJSON(obj: ScopeChainAccountJSON): ScopeChainAccount; }