import { gracely } from "gracely"; import { http } from "cloudly-http"; import { Account } from "../../Account"; import { Buffer } from "./Buffer"; import { Charge } from "./Charge"; import { Counterparts } from "./Counterparts"; import { Details } from "./Details"; import { History } from "./History"; import { Rules } from "./Rules"; import { Status } from "./Status"; export declare class Accounts { private readonly client; readonly buffer: Buffer; readonly charge: Charge; readonly details: Details; readonly rules: Rules; readonly status: Status; readonly counterparts: Counterparts; readonly history: History; constructor(client: http.Client); create(account: Account.Creatable): Promise; get(account: string): Promise; list(options?: { limit?: string; cursor?: string; organization?: string; }): Promise<(Account[] & { cursor?: string | undefined; }) | gracely.Error>; }