import { AbstractMetaData } from './MetaData'; import { ContentType } from './ContentType'; import { DataType } from './DataType'; /** @codex-xmi-id 2d8897b5-bfab-5b07-8207-dcaedd29a7ba */ export declare class DataSchema { id: number; uuid: string; path: string; relativePath: string; description: string; readonly: boolean; subscribeable: boolean; expandable: boolean; extendable: boolean; editable: boolean; removable: boolean; refreshable: boolean; metadata: AbstractMetaData; value: string; defaultValue: string; dataType: DataType; readTransformation: string; writeTransformation: string; contentType: ContentType; unit: string; children: DataSchema[]; parent: DataSchema; createDateTime: number; updatedDateTime: number; }