import type { ParentConfig } from '@tiptap/core' declare module '@tiptap/core' { interface NodeConfig { /** * A string or function to determine the role of the table. * @default 'table' * @example () => 'table' */ tableRole?: | string | ((this: { name: string options: Options storage: Storage parent: ParentConfig>['tableRole'] }) => string) } }