export { default as StructuredContent } from "./StructuredContent"; export { default as TextNode, withText } from "./TextNode"; export type Mark = | string | { _?: string; attrs?: Record; type: string; }; export type BlockSpec = { type: string; attrs?: Record; text?: string; marks?: Mark[]; content?: BlockSpec[]; };