import { Token } from './index'; import type { Config } from '../base'; /** * invisible token * * 不可见的节点 */ export declare class HiddenToken extends Token { get type(): 'hidden'; /** @class */ constructor(wikitext?: string, config?: Config, accum?: Token[]); cloneNode(): this; }