/** * Claude Code templates * * Directory structure: * claude/ * ├── agents/ # Sub-agent definitions * └── settings.json # Settings configuration * * Hooks come from shared-hooks/ (unified with other platforms). */ export declare const settingsTemplate: string; export interface AgentTemplate { name: string; content: string; } export interface SettingsTemplate { targetPath: string; content: string; } export declare function getAllAgents(): AgentTemplate[]; export declare function getSettingsTemplate(): SettingsTemplate; //# sourceMappingURL=index.d.ts.map