import type { AvailableCategory } from "../../types/category"; import type { AgentTableEntry } from "./agent-table-builder"; import type { SkillEntry } from "./skill-section-builder"; export interface DynamicPromptInput { agents: AgentTableEntry[]; skills: SkillEntry[]; categories: AvailableCategory[]; } export declare function buildDynamicPrompt(input: DynamicPromptInput): string;