import { String } from 'oak-domain/lib/types/DataType'; import { EntityShape } from 'oak-domain/lib/types/Entity'; import { EntityDesc } from 'oak-domain/lib/types'; import { Schema as System } from './System'; export interface Schema extends EntityShape { payNotifyUrl: String<128>; refundNotifyUrl: String<128>; system: System; } export declare const entityDesc: EntityDesc;