import type { Editor } from "@tiptap/core"; /** * Row utilities */ export declare const isFirstRow: (editor: Editor) => boolean; export declare function isFirstOrLastRow(editor: Editor): { isFirstRow: boolean; isLastRow: boolean; }; export declare function isSecondRow(editor: Editor): boolean; export declare const isHeaderRowToggled: (editor: Editor) => boolean; export declare const isSingleRow: (editor: Editor) => boolean; /** * Column utilities */ export declare const isFirstColumn: (editor: Editor) => boolean; export declare function isSecondColumn(editor: Editor): boolean; export declare function isFirstOrLastColumn(editor: Editor): { isFirstColumn: boolean; isLastColumn: boolean; }; export declare const isHeaderColumnToggled: (editor: Editor) => boolean; export declare const isSingleColumn: (editor: Editor) => boolean;