import type { SandboxSourceRef } from "#discover/manifest.js";
import type { CompiledSandboxDefinition } from "#compiler/manifest.js";
import { type ModuleBackedDefinitionLoadOptions } from "#compiler/normalize-helpers.js";
/**
 * Compiles one authored sandbox module into the normalized sandbox
 * definition stored on the compiled agent manifest.
 */
export declare function compileSandboxDefinition(_agentRoot: string, source: SandboxSourceRef, options: ModuleBackedDefinitionLoadOptions): Promise<CompiledSandboxDefinition>;
export declare function resolveParentSandboxSelector(value: unknown, message: string): Promise<boolean>;
