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(account: string, rule: Rule): Promise; replace(account: string, rule: Rule): Promise; remove(account: string, code: string): Promise; }