import { Editor } from 'slate'; /** * @description 修改内置的实例方法,在原有的实例方法上修改,并继承原有的方法 * @export * @template T * @param {T} editor */ declare function withPrototype(editor: T): T; export { withPrototype };