import { Editor, Location, NodeEntry } from 'slate'; import { CellElement, NodeEntryWithContext } from './types'; /** Generates a matrix for each table section (`thead`, `tbody`, `tfoot`) */ export declare function matrices(editor: Editor, options?: { at?: Location; }): Generator[][]>; export declare function filledMatrix(editor: Editor, options?: { at?: Location; }): NodeEntryWithContext[][];