import { Image } from "@nomiclabs/hardhat-docker"; import { DockerServer } from "./external-server/docker-server"; export declare class StarknetDockerProxy extends DockerServer { private rootPath; private cairoPaths; /** * @param image the Docker image to be used for running the container * @param rootPath the hardhat project root * @param cairoPaths the paths specified in hardhat config cairoPaths */ constructor(image: Image, rootPath: string, cairoPaths: string[]); protected getDockerArgs(): Promise; protected getContainerArgs(): Promise; protected getPort(): Promise; }