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