import type { DevBuildOptions } from './general.types'; export declare function devNodejs(opts: DevBuildOptions & { /** List of js/ts/etc.. extensions to watch for changes. This will build and reload the browser. * * Default: `['ts', 'js', 'json']`. Specifying this replaces the defaults completely. */ exts?: string[]; /** Arguments to pass on to Node */ nodeArgs?: string[]; }): Promise;