import { VariableItem } from "../VariableItem"; import Page from "./Page"; export declare enum DSType { project = 0, page = 1 } /** * 对应dom的style * */ export declare class Style { width: any; height: any; background: any; top: number | undefined; left: number | undefined; right: number | undefined; bottom: number | undefined; constructor(jsonObject?: Object); } declare abstract class DSObject { id: string; name: string; type: DSType; style: Style; abstract children: Array; variables: Array; protected constructor(jsonObject?: Object); toJson(): string; } export default DSObject;