import { gracely } from "gracely"; import { http } from "cloudly-http"; import { Rule } from "../Rule"; export declare class Rules { private readonly client; constructor(client: http.Client); create(rule: Rule): Promise; list(): Promise; replace(rule: Rule): Promise; remove(code: string): Promise; }