import { HardhatRuntimeEnvironmentExtended } from '../types'; /** * Administrate the specified contract at the specified address * If the address is not provided fallback to the contract latest deployment address * @param contractAddress address of the proxy * @param hre Hardhat runtime environment * @param contractName name of the contract * @param signWithEao Is the signer an EAO account. */ export declare const setupContract: ({ contractAddress, contractName, hre, signWithEoa, }: { contractAddress?: string | undefined; contractName: string; hre: HardhatRuntimeEnvironmentExtended; signWithEoa: boolean; }) => Promise; //# sourceMappingURL=setups.d.ts.map