import type { ethers } from "ethers"; import type { SignerWithAddress } from "../signers"; import type { FactoryOptions } from "../types"; import { Artifact, HardhatRuntimeEnvironment } from "hardhat/types"; export declare function getSigners(hre: HardhatRuntimeEnvironment): Promise; export declare function getSigner(hre: HardhatRuntimeEnvironment, address: string): Promise; export declare function getImpersonatedSigner(hre: HardhatRuntimeEnvironment, address: string): Promise; export declare function getContractFactory(hre: HardhatRuntimeEnvironment, name: string, signerOrOptions?: ethers.Signer | FactoryOptions): Promise; export declare function getContractFactory(hre: HardhatRuntimeEnvironment, abi: any[], bytecode: ethers.utils.BytesLike, signer?: ethers.Signer): Promise; export declare function getContractFactoryFromArtifact(hre: HardhatRuntimeEnvironment, artifact: Artifact, signerOrOptions?: ethers.Signer | FactoryOptions): Promise; export declare function getContractAt(hre: HardhatRuntimeEnvironment, nameOrAbi: string | any[], address: string, signer?: ethers.Signer): Promise; export declare function deployContract(hre: HardhatRuntimeEnvironment, name: string, args?: any[], signerOrOptions?: ethers.Signer | FactoryOptions): Promise; export declare function deployContract(hre: HardhatRuntimeEnvironment, name: string, signerOrOptions?: ethers.Signer | FactoryOptions): Promise; export declare function getContractAtFromArtifact(hre: HardhatRuntimeEnvironment, artifact: Artifact, address: string, signer?: ethers.Signer): Promise; //# sourceMappingURL=helpers.d.ts.map