interface requestManagerType { requestFunc: (path: string, data: any) => Promise; requestFuncProtobuff: (path: string, data: any) => Promise; } export declare class RequestController implements requestManagerType { private obj; constructor(obj: any); private setOptions; requestFuncProtobuff(path: string, data: any): Promise; requestFunc(path: string, data: any): Promise; requestFuncCustomize(path: string, data: any): Promise; } export {};