/** * Component Template Generator * Generates template content for different component types */ import { ComponentType, ComponentTemplate } from '../types/index.js'; /** * Generate component template based on type and configuration */ export declare function generateComponentTemplate(componentType: ComponentType, componentName: string, options?: { description?: string; author?: string; projectName?: string; }): ComponentTemplate; //# sourceMappingURL=component-templates.d.ts.map