import type { IConnection, Primitive } from "@nestia/fetcher"; import typia from "typia"; import type { ISystem } from "../../../structures/monitors/ISystem"; export declare function get(connection: IConnection): Promise; export declare namespace get { type Output = Primitive; const METADATA: { readonly method: "GET"; readonly path: "/monitors/system"; readonly request: null; readonly response: { readonly type: "text/plain"; readonly encrypted: true; }; readonly status: null; }; const path: () => string; const random: (g?: Partial) => Primitive; const simulate: (connection: IConnection) => Promise; }