import { ResultType } from './common/data-type'; import { Basic } from './common/basic'; declare class DebugController extends Basic { private Log; constructor(obj: any); SetLogMode(mode?: string): Promise; StartRecord(): Promise; EndRecord(): Promise; GetRecord(): Promise; GetDebugLogs(): Promise; } export default DebugController;