/** * 系统内置模板注册表 * 从 /template/*.json 加载 30 个预置模板,区分分类与标签 * 模板分为系统模板(内置)和自定义模板(后端API),此处只管理系统模板 */ export interface SystemTemplate { id: string; name: string; category: string; description: string; tags: string[]; formInfo: any; dataList: any[]; formData: any; } export declare const SYSTEM_TEMPLATES: SystemTemplate[]; export declare const SYSTEM_TEMPLATE_CATEGORIES: string[];