import { NexeCompiler } from './compiler'; import { NexeOptions } from './options'; declare function compile(compilerOptions?: Partial, callback?: (err: Error | null) => void): Promise; export { compile, NexeCompiler }; export { argv, version, NexeOptions, help } from './options';