import type { BaseMetadata, ThreadData } from "@liveblocks/client"; import { TableContent } from "@prismicio/types-internal/lib/content"; import type { Node as ProseMirrorNode, Schema } from "@tiptap/pm/model"; type TableRowBlock = TableContent["content"][number]; export declare const TableRow: import("@tiptap/core").Node; export declare const tableRowConverter: { fromPrismic(id: string, schema: Schema, threads?: ThreadData[]): (row: TableRowBlock) => ProseMirrorNode; toPrismic(node: ProseMirrorNode): TableRowBlock; }; export {};