import { NodeKind } from './node-kind'; import { Node } from './node'; export declare class CJK implements Node { readonly children: Node[]; readonly text: string; readonly kind = NodeKind.CJK; private static cache; private constructor(); toMarkdown(): string; static is(char: any): char is string; static create(char: string): CJK; }