import { ListType } from '../../helpers/dom/list'; import { IndentService } from './indentService'; export { ListType } from '../../helpers/dom/list'; export interface ListService extends IndentService { readonly type: ListType | undefined; setType(type: ListType | undefined): void; } export declare const NULL_LIST_SERVICE: ListService;