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