import { gracely } from "gracely"; import { http } from "cloudly-http"; import { Organization } from "../../Organization"; import { Fx } from "./Fx"; import { Groups } from "./Groups"; import { Risk } from "./Risk"; import { Rules } from "./Rules"; export declare class Organizations { private readonly client; readonly risk: Risk; readonly Rules: Rules; readonly groups: Groups; readonly fx: Fx; constructor(client: http.Client); list(options?: { limit?: string; cursor?: string; }): Promise<(Organization[] & { cursor?: string | undefined; }) | gracely.Error>; create(organization: Organization.Creatable): Promise; update(id: string, changeable: Organization.Changeable): Promise; inactivate(organization: string): Promise; }