export declare function nodejsPlay(opts?: { /** Default: `"./"` */ rootDir?: string; /** Default: `"playground/node"` */ playgroundDir?: string; /** Be careful this dir gets cleaned out on start. Default: `".temp/node"` */ outCacheDir?: string; /** Default: `"server.ts"` */ entryFile?: string; /** Default: `[]` */ copyFiles?: string[]; /** Playground will create some starter files to speed things up, if you want to specify * a different set of starter files you can point to a directory that will be copied from. * Eg: `"./playground-init"`. */ starterFilesDir?: string; /** Other dirs that on change should trigger a build. */ watchOtherDirs?: string[]; /** Setting this to true will delete all files in `playgroundDir` and replace with new starter files. */ overwrite?: boolean; }): Promise;