import { ProjectCompilerOptions, ProjectCompileResult } from './solidity/SolidityProjectCompiler'; import ZosPackageFile from '../files/ZosPackageFile'; export declare function compile(compilerOptions?: ProjectCompilerOptions, packageFile?: ZosPackageFile, force?: boolean): Promise; export declare function compileWithSolc(compilerOptions?: ProjectCompilerOptions): Promise; export declare function compileWithTruffle(): Promise; export declare function resetState(): void;