import type { World } from "#compiled/@workflow/world/index.js"; export interface ConfiguredWorkflowWorldModule { readonly [name: string]: unknown; readonly default?: unknown; } export interface InstallConfiguredWorkflowWorldInput { readonly module: ConfiguredWorkflowWorldModule | (() => unknown); } /** * Installs a Workflow world selected by the compiled agent config. */ export declare function installConfiguredWorkflowWorld(input: InstallConfiguredWorkflowWorldInput): Promise;