import type { SkillRenderTarget } from "./types.js"; export declare function initAdvisoryRuntimeBootstrapFiles({ root, bootstrapTargetFile, runtimeTargets, }: { root: string; bootstrapTargetFile?: string; runtimeTargets?: SkillRenderTarget[]; }): Promise; export declare function initRuntimeBootstrapFiles(root: string, targets?: readonly { file: string; target: SkillRenderTarget; }[], options?: { force?: boolean; }): Promise;