import { BaseCommand } from '../index.js'; /** * Discoverability wrapper for `qfg history NAME` — friction logs show agents * reaching for this phrasing. Always dispatches to `activity history`. */ export default class History extends BaseCommand { static args: { name: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static description: string; static examples: string[]; static strict: boolean; run(): Promise; }