import type { TText } from '@udecode/plate-common'; import type { Node } from 'slate'; import type { Stylable } from './interfaces'; export interface TextNode extends TText, Stylable { } export declare function isTextNode(node: Node): node is TextNode;