import type { ServiceModule } from '@sociably/core'; import ProcessorP from './Processor.js'; import { LibraryAccessorI } from './interface.js'; import type { AnyScriptLibrary } from './types.js'; type ScriptModuleConfigs = { libs?: AnyScriptLibrary[]; }; /** * @category Root */ declare namespace Script { const Processor: import("@sociably/core/service").ServiceProvider, [import("@sociably/core/base/StateController").BaseStateController, import("@sociably/core/service").ServiceScope, LibraryAccessorI]> & (new (stateController: import("@sociably/core/base/StateController").BaseStateController, scope: import("@sociably/core/service").ServiceScope, libAccessor: LibraryAccessorI) => import("./Processor.js").ScriptProcessor); type Processor