import { HardhatRuntimeEnvironmentExtended, IDeploymentParams } from './types'; /** * Deploy a contract on the networks specified in the hardhat config. * Use the CREATE2 scheme for the deployments. * @param deploymentParams contract and constructor arguments * @param hre hardhat runtime environment * @returns The address of the deployed contract - same for all network */ export declare const deployOneWithCreate2: (deploymentParams: IDeploymentParams, hre: HardhatRuntimeEnvironmentExtended) => Promise; /** * Deploy all the contracts specified in create2ContractDeploymentList. * Once deployed, do the setup. * @param hre */ export declare const deployWithCreate2FromList: (hre: HardhatRuntimeEnvironmentExtended) => Promise; //# sourceMappingURL=deploy.d.ts.map