import type { Node, RichContent, TableData } from 'ricos-schema'; import type { BuilderFunctionsMetadata, TableCell } from '../types'; import type { AddMethodParams } from './node-builder-methods'; export declare const makeTable: (generateId: () => string) => ({ cells, data, }: Omit & { cells: TableCell[][]; }, "type" | BuilderFunctionsMetadata>) => Node; export declare const addTable: (generateId: () => string) => ({ cells, data, index, before, after, content, }: AddMethodParams & { cells: TableCell[][]; }) => RichContent; //# sourceMappingURL=table-builder-api.d.ts.map