import { gracely } from "gracely"; import { http } from "cloudly-http"; import { Operation } from "../Operation"; export declare class Operations { private readonly client; constructor(client: http.Client); list(options?: { start?: string; end?: string; limit?: string; cursor?: string; prefix?: string; }): Promise<(Operation[] & { cursor?: string | undefined; }) | gracely.Error>; }