import type { IToken } from '../../types'; export interface ToTextContext { b: '_' | '*'; } export declare const toText: (node: IToken | IToken[], ctx?: ToTextContext) => string;