import { Command } from '@oclif/core'; import { OAuthCommand } from '@salesforce/b2c-tooling-sdk/cli'; import { type MetricsClient } from '@salesforce/b2c-tooling-sdk/clients'; export { getApiErrorMessage as formatApiError } from '@salesforce/b2c-tooling-sdk/clients'; /** * Base command for Metrics API operations. * Provides common flags and helper methods for interacting with the SCAPI Metrics API. */ export declare abstract class MetricsCommand extends OAuthCommand { /** * Get the Metrics client, ensuring short code and tenant ID are configured. */ protected getMetricsClient(): MetricsClient; }