import LinkedList from '../../../block/base/linkedList/linkedList'; import Parent from '../../../block/base/parent'; import Muya from '../../../index'; import { IListItemState } from '../../../state/types'; declare class ListItem extends Parent { children: LinkedList; static blockName: string; static create(muya: Muya, state: IListItemState): ListItem; get path(): (string | number)[]; constructor(muya: Muya); getState(): IListItemState; } export default ListItem;