///
///
import { AccountInfo, PublicKey } from '@solana/web3.js';
import { Parser } from '../util';
export interface LendingMarket {
version: number;
bumpSeed: number;
owner: PublicKey;
quoteCurrency: Buffer;
tokenProgramId: PublicKey;
oracleProgramId: PublicKey;
switchboardOracleProgramId: PublicKey;
}
/** @internal */
export declare const LendingMarketLayout: import("buffer-layout").Layout;
export declare const LENDING_MARKET_SIZE: number;
export declare const isLendingMarket: (info: AccountInfo) => boolean;
export declare const parseLendingMarket: Parser;