import type { Ping } from '../models/Ping'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class PingService { /** * Send a ping request to the Webdock API * This is a simple ping which performs no purpose other than return a status code so you can see if you can reach the Webdock API and authenticate properly. * @returns Ping Ping response * @throws ApiError */ static getPing(): CancelablePromise; }