import { AmazonSellingPartnerAPIClient } from "./AmazonSellingPartnerAPIClient.js"; import { CreateReportResponse, CreateReportScheduleResponse, CreateReportScheduleSpecification, CreateReportSpecification, GetReportsQuery, GetReportsResponse, GetReportSchedulesQuery, Report, ReportDocument, ReportSchedule, ReportScheduleList } from "../types/reports-api/v2021-06-30.js"; /** A client for v2021-06-30 of the Reports endpoints of the Amazon Selling Partner API. */ export declare class AmazonSellingPartnerReportsAPIClient { amazonSellingPartnerApiClient: AmazonSellingPartnerAPIClient; constructor(amazonSellingPartnerApiClient: AmazonSellingPartnerAPIClient); cancelReport(reportId: string): Promise; cancelReportSchedule(reportScheduleId: string): Promise; createReport(body: CreateReportSpecification): Promise; createReportSchedule(body: CreateReportScheduleSpecification): Promise; getReport(reportId: string): Promise; getReportDocument(reportDocumentId: string): Promise; getReportSchedule(reportScheduleId: string): Promise; getReportSchedules(query: GetReportSchedulesQuery): Promise; getReports(query: GetReportsQuery): Promise; } //# sourceMappingURL=AmazonSellingPartnerReportsAPIClient.d.ts.map