/// import { Node } from 'unist'; import { OnUpdate } from './CodeView'; export interface TextCellProps { id: string; nodes: Node[]; onUpdate: OnUpdate; } export declare function TextCell({ id, nodes, onUpdate }: TextCellProps): JSX.Element;