import { SoftwareEnvironment } from '@stencila/schema'; /** * Generates a default.nix and a nixDockerfile for a `SoftwareEnvironment` */ declare function compile(environ: void | SoftwareEnvironment | null, folder: any): void; /** * Builds a Docker image from a nixDockerfile */ declare function build(folder: any): Promise; /** * Executes nix-shell inside a Docker image from nixDockerfile with a Docker data volume for /nix store */ declare function execute(folder: any, command?: string): Promise; declare const _default: { compile: typeof compile; build: typeof build; execute: typeof execute; }; export default _default;