import protoJs from "protobufjs"; import { Interface, Enum, ApiModule, InterfaceModule, PropertyType, Import } from "../apiInterface"; export declare function isEnum(obj: any): boolean; export declare function isType(obj: any): boolean; export declare function isNamespace(obj: any): boolean; export declare function isService(obj: any): boolean; export declare function typeGenInterfaceModule(child: protoJs.Type): InterfaceModule; export declare function typeGenInterface(item: protoJs.Type): Interface; export declare function insertImport(arr: Import[], k: PropertyType): void; export declare function enumGenEnum(item: protoJs.Enum): Enum; export declare function serviceGenApiFunction(item: protoJs.Service): ApiModule;