import { OnlineServer, PingedServer } from '../classes/server/Server.js'; type PingParams = { address: string; port?: number; protocol?: number; timeout?: number; }; type ReqOptions = { method?: string; payload?: {}; headers?: {}; }; declare class Requests { private static send; static GET: (url: string, opts?: ReqOptions) => Promise; static POST: (url: string, opts?: ReqOptions) => Promise; static DELETE: (url: string, opts?: ReqOptions) => Promise; static SOCKET_TIMEOUT: number; static sendServerPing(pingParams: PingParams): Promise; } export { Requests, Requests as default }; //# sourceMappingURL=requests.d.ts.map