import type { StatusBlock } from "../document/parse.js"; type SuperintendentSystemPromptInput = { state: StatusBlock["state"]; inspectorNames: string[]; }; export declare function buildSuperintendentSystemPrompt(input: SuperintendentSystemPromptInput): string; type InspectorSystemPromptInput = { inspectorName: string; builder?: { summary: string; log_path?: string; }; }; export declare function buildInspectorSystemPrompt(input: InspectorSystemPromptInput): string; export declare function buildOwnerSystemPrompt(): string; export declare function prependSystemPrompt(systemPrompt: string, userPrompt: string): string; export {};