export interface CheckDeployArtifact { name: string; wasmPath: string; mostPath: string; initCandid: string; initArg?: string; wasmMemoryLimit?: number; } export declare function checkDeploy(artifacts: CheckDeployArtifact[], { verbose, mocPath }: { verbose?: boolean; mocPath: string; }): Promise;