/** * Copilot templates * * These are GENERIC templates for user projects. * * Directory structure: * copilot/ * ├── prompts/ # Slash-command prompts → .github/prompts/*.prompt.md * ├── hooks/ # Hook scripts → .github/copilot/hooks/ * └── hooks.json # Hooks config → .github/hooks/trellis.json */ export interface HookTemplate { name: string; content: string; } export interface PromptTemplate { name: string; content: string; } export declare function getAllHooks(): HookTemplate[]; export declare function getHooksConfig(): string; export declare function getAllPrompts(): PromptTemplate[]; //# sourceMappingURL=index.d.ts.map