import type { YooEditor } from '@yoopta/editor'; import type { Path } from 'slate'; import type { TableCellElement } from '../types'; export type MergeCellsOptions = { cells: [TableCellElement, Path][]; }; /** * Merge selected cells into one */ export declare const mergeCells: (editor: YooEditor, blockId: string, options: MergeCellsOptions) => void; //# sourceMappingURL=merge-cells.d.ts.map