/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import type { TableCellNode } from './LexicalTableCellNode.js'; import type { TableNode } from './LexicalTableNode.js'; import type { TableRowNode } from './LexicalTableRowNode.js'; import { type GeneratedJSONFactory } from 'lexical'; /** * TableNode's schema-declared fields, for a clone. Generated from that * schema; do not edit by hand. * * @internal */ export declare function afterCloneTableNode(node: TableNode, prevNode: TableNode): void; /** TableNode's generated implementations, for its `$config`. @internal */ export declare const GENERATED_TABLE: GeneratedJSONFactory; /** * TableRowNode's schema-declared fields, for a clone. Generated from that * schema; do not edit by hand. * * @internal */ export declare function afterCloneTableRowNode(node: TableRowNode, prevNode: TableRowNode): void; /** TableRowNode's generated implementations, for its `$config`. @internal */ export declare const GENERATED_TABLEROW: GeneratedJSONFactory; /** * TableCellNode's schema-declared fields, for a clone. Generated from that * schema; do not edit by hand. * * @internal */ export declare function afterCloneTableCellNode(node: TableCellNode, prevNode: TableCellNode): void; /** TableCellNode's generated implementations, for its `$config`. @internal */ export declare const GENERATED_TABLECELL: GeneratedJSONFactory;