import type { HTTPRPCOptions } from '../index.js'; import type { HTTPRPCClient } from '../lib/core.js'; export interface DiagCmdsResult { active: boolean; args: string[]; endTime: Date; id: string; options: Record; startTime: Date; } export interface DiagAPI { cmds(options?: HTTPRPCOptions): Promise; net(options?: HTTPRPCOptions): Promise; sys(options?: HTTPRPCOptions): Promise; } export declare function createDiag(client: HTTPRPCClient): DiagAPI; //# sourceMappingURL=index.d.ts.map