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