import type { IConfig, ILogger } from '../../interfaces'; import type { ISandbox } from '../../interfaces/sandbox'; import type { NonPrimitive } from '../../lib'; import type { Stdlib } from '../interpreter/stdlib'; /** * WARNING: * * This isn't sandbox at all, this simply evaluates user provided JavaScript code. * So smart bad bad user, can do harmful things. */ export declare class PureJSSandbox implements ISandbox { evalScript(_config: IConfig, js: string, stdlib?: Stdlib, _logger?: ILogger, variableDefinitions?: NonPrimitive): unknown; }