import { DomainObject } from "./domain-object"; import { DimensionField } from "./dimension-field"; import { SchemaType } from "./schema-type"; import { PlanableTask } from "./planable-task"; import { ServiceObject } from "./service-object"; import { Beacon } from "./beacon"; import { Production } from "./production"; export declare class SchemaInstance extends DomainObject { InstanceId?: string | undefined; SchemaTypeId?: string | undefined; SchemaType?: SchemaType | undefined; Fields?: DimensionField[] | undefined; TaskId?: string | undefined; Task?: PlanableTask | undefined; ServiceObjectId?: string | undefined; ServiceObject?: ServiceObject | undefined; BeaconId?: string | undefined; Beacon?: Beacon | undefined; ProductionId?: string | undefined; Production?: Production | undefined; DocumentDate?: Date | undefined; } //# sourceMappingURL=schema-instance.d.ts.map