import { OutlineItem } from '../types/editor-types'; type AnyEditor = any; /** * 获取文档大纲 * 使用 @platejs/toc 官方 API * @param editor 编辑器实例 * @returns 大纲项数组 */ export declare function getOutline(editor: AnyEditor): OutlineItem[]; export {};