import type { HttpClient } from "../core/http.js"; import type { SubmitPendingApprovalRequest, PendingApprovalResponse, PendingApprovalListResponse, ApprovePendingApprovalRequest, OneclawResponse } from "../types.js"; export declare class PendingApprovalsResource { private readonly http; constructor(http: HttpClient); submit(body: SubmitPendingApprovalRequest): Promise>; list(params?: { status?: string; agent_id?: string; }): Promise>; get(id: string): Promise>; approve(id: string, body: ApprovePendingApprovalRequest): Promise>; execute(id: string): Promise>; cancel(id: string): Promise>; } //# sourceMappingURL=pending-approvals.d.ts.map