import { DocTemplate, DocTemplateCategoryPreset, DocVariable, DocVariableType } from './types'; /** 分类预设(含对应模板骨架) */ export declare const DOC_CATEGORY_PRESETS: DocTemplateCategoryPreset[]; /** 变量类型预设 */ export declare const DOC_VARIABLE_TYPE_PRESETS: { value: DocVariableType; label: string; }[]; /** 创建变量 */ export declare const createVariable: (overrides?: Partial) => DocVariable; /** 创建模板 */ export declare const createTemplate: (overrides?: Partial) => DocTemplate; /** 默认模板内容示例 */ export declare const SAMPLE_TEMPLATE_CONTENT: string; /** 工具栏按钮 */ export declare const DOC_TOOLBAR_BUTTONS: string[]; /** 替换变量占位符 */ export declare const renderTemplateContent: (content: string, values: Record) => string;