import type { Mode } from "../../types.js"; import type { AgentPromptSection } from "../prompt-composer.js"; export interface PromptSectionInput { readonly systemSections: readonly string[]; readonly selectedSkillNames: readonly string[]; readonly prompt: string; readonly mode: Mode; } export declare const buildPromptSections: (input: PromptSectionInput) => AgentPromptSection[];