import type { SectionsData } from '@vigilkids/section-core'; /** JSON-LD 结构化数据生成参数 */ export interface SectionSEOOptions { /** 页面标题 */ title: string; /** 页面描述 */ description: string; /** 页面 URL (完整路径) */ url?: string; /** 发布日期 ISO 格式 */ datePublished?: string; /** 修改日期 ISO 格式 */ dateModified?: string; /** 作者名称 */ author?: string; } /** 从 SectionsData 生成 JSON-LD 结构化数据 */ export declare function generateSectionJsonLd(sectionsData: SectionsData, options: SectionSEOOptions): Record[]; /** * 生成 JSON-LD script 标签内容 * 用于 SSR 场景下直接注入 ,兼容 Nuxt useHead() 的 script 格式 */ export declare function generateJsonLdScripts(sectionsData: SectionsData, options: SectionSEOOptions): Array<{ type: 'application/ld+json'; innerHTML: string; }>;