/** * Palantir Foundry Operations API. * Long-running operations tracking. * @see https://www.palantir.com/docs/foundry/api/v2/operations-v2-resources/ */ import type { PalantirClient } from "./client.js"; import type { Operation } from "./types.js"; export declare class OperationsNamespace { private client; constructor(client: PalantirClient); /** Get an operation by RID. */ get(operationRid: string): Promise; /** Wait for an operation to complete (polling). */ waitFor(operationRid: string, options?: { pollIntervalMs?: number; timeoutMs?: number; }): Promise; } //# sourceMappingURL=operations.d.ts.map