import { Signer } from "ethers";
import { Provider, TransactionRequest } from "@ethersproject/providers";
import { ContractFactory, Overrides } from "@ethersproject/contracts";
import type { AaveAdapter } from "./AaveAdapter";
export declare class AaveAdapterFactory extends ContractFactory {
    constructor(signer?: Signer);
    deploy(controller: string, originAsset: string, overrides?: Overrides): Promise<AaveAdapter>;
    getDeployTransaction(controller: string, originAsset: string, overrides?: Overrides): TransactionRequest;
    attach(address: string): AaveAdapter;
    connect(signer: Signer): AaveAdapterFactory;
    static connect(address: string, signerOrProvider: Signer | Provider): AaveAdapter;
}
