import { ParentServiceTypeEnum } from './ParentServiceTypeEnum';
/** Parent service */
export interface ParentService {
    /** Name of the parent service */
    name: string;
    /** Type of the parent service */
    type: ParentServiceTypeEnum;
}
//# sourceMappingURL=ParentService.d.ts.map