/** * Pure parsing + rendering for the action-selection prompt asset. * The prompt itself lives in `action-selection.md` so it diffs cleanly * and can be iterated on without touching code; this module turns that * file's contents into a system string and a user-template string. */ export interface ParsedPrompt { system: string; userTemplate: string; } export interface UserPromptVars { url: string; reason: string; candidates: string; budgetRemaining?: number | string; } export declare function parsePromptFile(content: string): ParsedPrompt; export declare function renderUserPrompt(template: string, vars: UserPromptVars): string; //# sourceMappingURL=loader.d.ts.map