import { AmCommand } from '@salesforce/b2c-tooling-sdk/cli'; /** * Command to delete an Account Manager API client. * The API client must have been disabled for at least 7 days before it can be deleted. */ export default class ClientDelete extends AmCommand { static args: { 'api-client-id': import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; run(): Promise; }