import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; export declare class ProcessesV1 extends ClientSDK { /** * GetRunningProcesses * * @remarks * Retrieve 10 most recently started [process](https://hathora.dev/docs/concepts/hathora-entities#process) objects for an [application](https://hathora.dev/docs/concepts/hathora-entities#application). Filter the array by optionally passing in a `region`. * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ getRunningProcesses(appId?: string | undefined, region?: components.Region | undefined, options?: RequestOptions): Promise>; /** * GetStoppedProcesses * * @remarks * Retrieve 10 most recently stopped [process](https://hathora.dev/docs/concepts/hathora-entities#process) objects for an [application](https://hathora.dev/docs/concepts/hathora-entities#application). Filter the array by optionally passing in a `region`. * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ getStoppedProcesses(appId?: string | undefined, region?: components.Region | undefined, options?: RequestOptions): Promise>; /** * GetProcessInfoDeprecated * * @remarks * Get details for a [process](https://hathora.dev/docs/concepts/hathora-entities#process). * * @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible. */ getProcessInfoDeprecated(processId: string, appId?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=processesv1.d.ts.map