import { DBDefinition } from './db/DB'; import { RuleDefinition } from './rule/Rule'; import { TestDefinition } from './test/Test'; export declare type ServiceType = 'db' | 'rule' | 'test'; export declare function getProtoPath(type: ServiceType): string; export declare function getServiceDefinition(type: ServiceType, proto: any): DBDefinition | RuleDefinition | TestDefinition;