import { Type, BackboneAbstractComponent, BranchAbstractComponent, DivisionAbstractComponent, TBSelection } from '@textbus/core'; import { Matcher, SelectionMatchState } from './matcher'; export declare class ListMatcher implements Matcher { private tagName; private excludeComponents; constructor(tagName: 'ul' | 'ol', excludeComponents?: Array>); queryState(selection: TBSelection): SelectionMatchState; }