import type { HttpClient } from "../core/http.js"; import type { CreateCedarPolicyRequest, CedarPolicyResponse, CedarPolicyListResponse, CedarPolicyTestRequest, CedarPolicyTestResponse, OneclawResponse } from "../types.js"; export declare class CedarPoliciesResource { private readonly http; constructor(http: HttpClient); create(body: CreateCedarPolicyRequest): Promise>; list(): Promise>; get(policyId: string): Promise>; delete(policyId: string): Promise>; test(body: CedarPolicyTestRequest): Promise>; } //# sourceMappingURL=cedar-policies.d.ts.map