import { type CommandModule } from 'yargs'; import { type APICommandFlags } from '../../../lib/command/api-command.js'; import { type FormatAndWriteItemFlags } from '../../../lib/command/format.js'; export type CommandArgs = APICommandFlags & FormatAndWriteItemFlags & { location?: string; id?: string; verbose: boolean; }; declare const cmd: CommandModule; export default cmd; //# sourceMappingURL=getcurrent.d.ts.map