export interface HastNode {
type: string;
value?: string;
tagName?: string;
properties?: Record<string, unknown>;
children?: HastNode[];
}
export declare const escape_html_text: (str: string) => string;
export declare const hast_to_html: (node: HastNode) => string;