import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import * as operations from "../models/operations/index.js"; import { PageIterator } from "../types/operations.js"; import { Executions } from "./executions.js"; export declare class Reports extends ClientSDK { private _executions?; get executions(): Executions; /** * List configured reports * * @remarks * List all configured reports that can be generated. */ list(request?: operations.ListReportsRequest | undefined, options?: RequestOptions): Promise>; /** * Add a report * * @remarks * Create a new report. */ create(reportCreate: components.ReportCreate, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Get a report * * @remarks * Fetches a report by its ID. */ get(reportId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; /** * Update a report * * @remarks * Updates the configuration of a report. */ put(reportUpdate: components.ReportUpdate, reportId: string, merchantAccountId?: string | null | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=reports.d.ts.map