import { GraphQLService } from "../../services/graphql/graphql.service"; import { ConfigController } from "../config/config.controller"; import { IDeployContractInput } from "./models"; export declare class DeployController { private _graphQLService; private _configController; constructor(_graphQLService: GraphQLService, _configController: ConfigController); /** * Deploy a contract */ deployContract(deployContractInput: IDeployContractInput): Promise; }