import type { HardhatRuntimeEnvironment } from 'hardhat/types'; import type { ContractFactory, Contract } from 'ethers'; import { ForceImportOptions } from './utils'; export interface ForceImportFunction { (proxyAddress: string, ImplFactory: ContractFactory, opts?: ForceImportOptions): Promise; } export declare function makeForceImport(hre: HardhatRuntimeEnvironment): ForceImportFunction; //# sourceMappingURL=force-import.d.ts.map