import {Signer} from 'ethers'; import {Provider, TransactionRequest} from '@ethersproject/providers'; import {ContractFactory, Overrides} from '@ethersproject/contracts'; import {Obligation} from './Obligation'; export declare class ObligationFactory extends ContractFactory { constructor(signer?: Signer); deploy(overrides?: Overrides): Promise; getDeployTransaction(overrides?: Overrides): TransactionRequest; attach(address: string): Obligation; connect(signer: Signer): ObligationFactory; static connect( address: string, signerOrProvider: Signer | Provider ): Obligation; }