import { Metric } from '../../../../enums/index.js'; import { operations } from '../../../../types/restful/specs/sell_analytics_v1_oas3.js'; import Restful, { OpenApi } from '../../index.js'; export default class Analytics extends Restful implements OpenApi { static id: string; get basePath(): string; findSellerStandardsProfiles(): Promise; getSellerStandardsProfile(program: string, cycle: string): Promise; getTrafficReport({ dimension, filter, metric, sort }?: { dimension?: string; filter?: string; metric?: string | Metric | `${Metric}`; sort?: string; }): Promise; getCustomerServiceMetric(customerServiceMetricType: string, evaluationType: string): Promise; }