/// import { AccountInfo } from '@solana/web3.js'; import { StringPublicKey } from '../../utils'; export interface ParsedAccountBase { pubkey: StringPublicKey; account: AccountInfo; info: any; } export declare type AccountParser = (pubkey: StringPublicKey, data: AccountInfo) => ParsedAccountBase | undefined; export interface ParsedAccount extends ParsedAccountBase { info: T; } //# sourceMappingURL=types.d.ts.map