import type { Node as PMNode, Schema } from '@atlaskit/editor-prosemirror/model'; type CreateTableProps = { cellContent?: PMNode; colsCount?: number; layout?: string; rowsCount?: number; schema: Schema; tableWidth?: number | 'inherit'; withHeaderRow?: boolean; }; export declare const createTable: ({ schema, rowsCount, colsCount, withHeaderRow, cellContent, tableWidth, layout, }: CreateTableProps) => PMNode; export {};