import { type Argv, type CommandModule } from 'yargs'; import { type WithLocales } from '../../lib/api-helpers.js'; import { type APIOrganizationCommandFlags } from '../../lib/command/api-organization-command.js'; import { type CapabilityIdOrIndexInputFlags } from '../../lib/command/capability-flags.js'; import { type OutputItemOrListFlags } from '../../lib/command/listing-io.js'; import { type CapabilitySummaryWithNamespace } from '../../lib/command/util/capabilities-util.js'; export type CommandArgs = APIOrganizationCommandFlags & OutputItemOrListFlags & CapabilityIdOrIndexInputFlags & { namespace?: string; verbose: boolean; tag?: string; }; export declare const builder: (yargs: Argv) => Argv; export type CapabilitySummaryWithLocales = CapabilitySummaryWithNamespace & WithLocales; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=translations.d.ts.map