import { StructureSchema } from '@ephox/boulder'; import type { Result } from '@ephox/katamari'; export interface TableSpec { type: 'table'; header: string[]; cells: string[][]; } export interface Table { type: 'table'; header: string[]; cells: string[][]; } export declare const tableSchema: import("@ephox/boulder").StructureProcessor; export declare const createTable: (spec: TableSpec) => Result