import type { CellAttributes, CellAttributesWithColSpan } from '../types'; export declare function removeColSpan(attrs: CellAttributes, pos: number, n?: number): CellAttributes; export declare function assertColspan(attrs: CellAttributes): void; export declare function addColSpan(attrs: T, pos: number, n?: number): T;