import { Transport } from '../../internal/interfaces/transport';
import { VIPLendingAPI } from '../viplending/viplending/api_vip_lending';
export interface VIPLendingService {
    getVIPLendingApi(): VIPLendingAPI;
}
export declare class VIPLendingServiceImpl implements VIPLendingService {
    private readonly transport;
    private readonly vIPLending;
    constructor(transport: Transport);
    getVIPLendingApi(): VIPLendingAPI;
}
