/** * Prompt Loader * * Loads and caches system prompts for the incoming/outgoing processing pipeline. * Looks in custom paths first, then falls back to built-in prompts (inlined). */ import type { TalkerDependencies } from "../../types"; export declare function getIncomingPrompt(deps: TalkerDependencies): string; export declare function getOutgoingPrompt(deps: TalkerDependencies): string; /** * Reset prompt cache (for testing) */ export declare function resetPromptCache(): void;