///
///
import { PublicKey } from '@solana/web3.js';
import { LendInfoItem } from './types';
import { LendRewardInfo } from './structs';
export declare const platformId = "francium";
export declare const lendingPoolsCacheKey = "lending_pools";
export declare const lendProgramId: PublicKey;
export declare const lendingPools: {
[x: string]: LendInfoItem;
};
export declare const lendingPoolList: {
pool: string;
scale: number;
}[];
export declare const lendRewardProgramId: PublicKey;
export declare const lendRewardInfo: {
[x: string]: LendRewardInfo;
};