/** * Template loading, caching, and rendering utilities. * * Templates live in ~/.remote-copilot-mcp/templates/{name}.md and are * cached in-memory with a short TTL so edits take effect quickly without * needing a server restart. */ /** * Load a template file from ~/.remote-copilot-mcp/templates/{name}.md. * Returns the raw template string, or null if the file doesn't exist. * Results are cached in memory with a 60-second TTL. */ export declare function loadTemplate(name: string): string | null; /** * Replace all `{{VAR}}` placeholders in a template string with the * corresponding values from the provided vars map. */ export declare function renderTemplate(template: string, vars: Record): string; //# sourceMappingURL=templates.d.ts.map