import { ListBaseToken } from './listBase'; import type { LintError } from '../../base'; import type { SyntaxBase } from '../../mixin/syntax'; export interface ListToken extends SyntaxBase { } /** * `;:*#` at the start of a line * * 位于行首的`;:*#` */ export declare abstract class ListToken extends ListBaseToken { get type(): 'list'; }