import { EntityShape } from 'oak-domain/lib/types/Entity'; import { EntityDesc } from 'oak-domain/lib/types'; import { Schema as ShipService } from './ShipService'; import { Schema as System } from './System'; export interface Schema extends EntityShape { shipService: ShipService; system: System; } export declare const entityDesc: EntityDesc;