import type { IAnyModelType, Instance, SnapshotIn } from 'mobx-state-tree'; export declare const Row: import("mobx-state-tree").IModelType<{ storeType: import("mobx-state-tree").IType; id: import("mobx-state-tree").ISimpleType; parentId: import("mobx-state-tree").IType; key: import("mobx-state-tree").ISimpleType; pristine: import("mobx-state-tree").IType; data: import("mobx-state-tree").IType; rowSpans: import("mobx-state-tree").IType; index: import("mobx-state-tree").ISimpleType; newIndex: import("mobx-state-tree").ISimpleType; nth: import("mobx-state-tree").IType; path: import("mobx-state-tree").IType; expandable: import("mobx-state-tree").IType; checkdisable: import("mobx-state-tree").IType; isHover: import("mobx-state-tree").IType; children: import("mobx-state-tree").IOptionalIType, [undefined]>; depth: import("mobx-state-tree").ISimpleType; appeared: import("mobx-state-tree").IType; lazyRender: import("mobx-state-tree").IType; }, { readonly checked: boolean; readonly modified: boolean; getDataWithModifiedChilden(): any; readonly collapsed: boolean; readonly expanded: boolean; readonly moved: boolean; readonly locals: any; readonly checkable: boolean; readonly draggable: boolean; /** * 判断当前行点击后是否应该继续触发check * 用于限制checkOnItemClick触发的check事件 */ readonly isCheckAvaiableOnClick: boolean; } & { toggle(forceCheck?: boolean): void; toggleExpanded(forceExpand?: boolean): void; change(values: object, savePristine?: boolean): void; reset(): void; setCheckdisable(bool: boolean): void; setIsHover(value: boolean): void; replaceWith(data: any): void; markAppeared(appeared: any): void; }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>; export type IRow = Instance; export type SRow = SnapshotIn;