import Size from "./Size"; export default class Box { Id: number; ParentId: number; DataId: string | null; IsSpecial: boolean; IsAssistant: boolean; DisableCollisionDetection: boolean; LayoutStrategyId: string | null; AssistantLayoutStrategyId: string | null; Size: Size; IsCollapsed: boolean; static None: number; get IsDataBound(): boolean; static Special(id: number, visualParentId: number, disableCollisionDetection: boolean): Box; constructor(dataId: string | null, id: number, parentId: number, isSpecial: boolean, disableCollisionDetection: boolean, isAssistant: boolean); }