import type { YooEditor } from '../types'; import type { RemoveMarkOptions } from './types'; /** * Remove mark from specified selection or blocks * * @param editor - YooEditor instance * @param options - Remove mark options * * @example * ```typescript * // Remove bold mark from current text selection (slate.selection) or whole block * Marks.remove(editor, { type: 'bold' }); * * // Remove mark from specific selection * Marks.remove(editor, { * type: 'bold', * selection: { anchor: { path: [0, 0], offset: 0 }, focus: { path: [0, 0], offset: 5 } } * }); * * // Remove color mark from specific block * Marks.remove(editor, { * type: 'color', * at: 0 * }); * ``` */ export declare function removeMark(editor: YooEditor, options: RemoveMarkOptions): void; //# sourceMappingURL=removeMark.d.ts.map