import { d as AbstractProcess, e as GetRequestOptions, C as Compute, a as GetResponse } from '../../../../../Compute-f53b8251.js'; import { AoConnect } from '../../../interfaces/AoConnect.js'; import '../../../../ao/v0/types/UnitInfo.js'; import '../../../../ao/v0/types/DryRunResult.js'; import '../../../../ao/v0/types/Result.js'; import '../../../../ao/v0/types/HTTPResponse.js'; declare class Process extends AbstractProcess { protected aoconnect: AoConnect; protected get_request_options: GetRequestOptions; constructor(computeUnit: Compute, processId: string, aoconnect: AoConnect); /** * Set the number of results to return. * * @param limit The limit to pass to the request. * @returns `this` instance for further method chaining. */ limit(limit: number): this; /** * Set the cursor starting point. * * @param from The cursor starting point. * @returns `this` instance for further method chaining. */ from(from: string): this; /** * Set the cursor ending point. * * @param to The cursor ending point. * @returns `this` instance for further method chaining. */ to(to: string): this; /** * Set the sort order. * * @param sort The sort order to pass to the request. * @returns `this` instance for further method chaining. */ sort(sort: "ASC" | "DESC"): this; get(): Promise; } export { Process };