/**
 * @file marginPool.ts
 * @author astra <astra@volare.finance>
 * @date 2022
 */
import { Address, Provider } from '@volare.finance/utils.js';
import { ContractInterface } from 'ethers';
export declare class MarginPool extends Provider {
    static ABI(): ContractInterface;
    constructor(contract: Address, endpoint: string);
}
