/** * Template generators for AI coding assistant integration files * * Generates command file templates for Claude Code, Codex, OpenCode, and Gemini CLI. */ import type { IntegrationTemplate } from './types.js'; /** * Get Claude Code command file templates */ export declare function getClaudeTemplates(): IntegrationTemplate[]; /** * Get Codex command file templates */ export declare function getCodexTemplates(): IntegrationTemplate[]; /** * Get OpenCode command file templates */ export declare function getOpenCodeTemplates(): IntegrationTemplate[]; /** * Get Gemini CLI command file templates */ export declare function getGeminiTemplates(): IntegrationTemplate[]; //# sourceMappingURL=templates.d.ts.map