import type { JsonObj } from '../../result.js'; import { APICommand } from '../../index.js'; export default class ActivityRestore extends APICommand { static args: { name: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static description: string; static examples: string[]; static flags: { type: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; yes: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; run(): Promise; /** * When the user omits --type, fall back to listing live metadata so we can * still find configType for keys that were *renamed-then-deleted* (live * record gone, deletion history exists). Returns the unique config types * that match the key — empty when nothing matches. */ private findCandidateTypes; }