import { JsonRpcProvider } from "ethers"; import { DeployedContracts } from "./deploy-mocks"; export interface DeploymentOptions { provider: JsonRpcProvider; mode: "hardhat" | "anvil"; precompileNames?: string; quiet?: boolean; } export declare function detectMode(provider: JsonRpcProvider): Promise<"anvil" | "hardhat">; export declare function deployWithChecks(options: DeploymentOptions): Promise;