import { Connection, PublicKey } from "@solana/web3.js";
import { SolendReserve } from "./solendReserv";
export declare class SolendMarket {
    private connection;
    reserves: Array<SolendReserve>;
    rewardsData: any | null;
    config: any;
    programId: PublicKey;
    private constructor();
    static initialize(connection: Connection, environment?: "production" | "devnet" | "beta", marketAddress?: string): Promise<SolendMarket>;
}
