import type { ManagedInstructionBlockResult } from "./instruction-types.js"; import type { SkillRenderTarget } from "./types.js"; export interface RuntimeBootstrap { target: SkillRenderTarget; content: string; managedBlock: string; } export declare function renderRuntimeBootstrap(target?: SkillRenderTarget): RuntimeBootstrap; export declare function renderRuntimeBootstrapManagedBlock(target: SkillRenderTarget, content: string): string; export declare function upsertRuntimeBootstrapBlock(existing: string, bootstrap: RuntimeBootstrap, options?: { force?: boolean; }): ManagedInstructionBlockResult;