import { Signer } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { LendingPoolCore, LendingPoolCoreInterface } from "../LendingPoolCore"; export declare class LendingPoolCore__factory { static readonly abi: ({ anonymous: boolean; inputs: { indexed: boolean; internalType: string; name: string; type: string; }[]; name: string; type: string; payable?: undefined; stateMutability?: undefined; constant?: undefined; outputs?: undefined; } | { payable: boolean; stateMutability: string; type: string; anonymous?: undefined; inputs?: undefined; name?: undefined; constant?: undefined; outputs?: undefined; } | { constant: boolean; inputs: { internalType: string; name: string; type: string; }[]; name: string; outputs: { internalType: string; name: string; type: string; }[]; payable: boolean; stateMutability: string; type: string; anonymous?: undefined; })[]; static createInterface(): LendingPoolCoreInterface; static connect(address: string, signerOrProvider: Signer | Provider): LendingPoolCore; }