export declare enum DeploymentStatus { NotStarted = "NotStarted", InProgress = "InProgress", Failed = "Failed", Finished = "Finished" } export declare enum ContractStatus { NotStarted = "NotStarted", Failed = "Failed", Finished = "Finished" } export declare type ContractItem = { contractName: string; args: unknown[]; status: ContractStatus; deployment?: string; errorName?: string; reason?: string; }; export declare type Cache = { network: string; status: DeploymentStatus; lastContract: string; contracts: Map; startTime: number; endTime: number; }; export declare type CacheJSON = { network: string; status: DeploymentStatus; lastContract: string; contracts: object; startTime: number; endTime: number; }; export declare type ProjectPaths = { rootPath: string; cacheFilename: string; }; //# sourceMappingURL=types.d.ts.map