import type { SkillRenderTarget } from "./types.js"; export type RuntimeBootstrapTarget = { file: string; target: SkillRenderTarget; }; export declare function resolveInitRuntimeBootstrapTargets({ root, runtimeTargets, useProjectDefaults, }: { root: string; runtimeTargets?: SkillRenderTarget[] | undefined; useProjectDefaults?: boolean; }): Promise; export declare function resolveRefreshRuntimeBootstrapTargets({ root, runtimeTargets, }: { root: string; runtimeTargets: SkillRenderTarget[]; }): Promise; export declare function detectedRuntimeTargets(root: string): Promise>;