import type { CommandModule } from "yargs"; import type { DefinitionRepo } from "../../definition/types"; interface Alias { group: string; name: string; } export declare function getAliases(repo: DefinitionRepo): Alias[]; declare const command: CommandModule; export default command;