import { NowikiBaseToken } from './base';
import type { LintError, Config } from '../../base';
import type { Token } from '../../internal';
/**
* `` or `` that allows no modification
*
* ``或``,不可进行任何更改
*/
export declare abstract class NoincludeToken extends NowikiBaseToken {
#private;
get type(): 'noinclude';
/** @param fixed 是否不可更改 */
constructor(wikitext: string, config?: Config, accum?: Token[], fixed?: boolean);
cloneNode(): this;
setText(str: string): string;
}