import type { Node, RichContent } from 'ricos-schema'; export type Interceptor = (context: { node: Node; result: string | string[]; }) => string | string[]; export declare const toHtml: (content: RichContent | Node[], interceptorFn?: Interceptor, separator?: string) => string; export declare const ensureNodeType: (nodes: Node[]) => Node[]; //# sourceMappingURL=toHtml.d.ts.map