import { BaseCommand } from '../index.js'; /** * Discoverability wrapper. Friction-log entries show agents reaching for * `qfg audit-log` (with and without a positional). Dispatch by argument * presence so both phrasings land on the right activity subcommand. * * Strategy A from qfg-d6cn.3: a thin top-level command that re-routes via * `this.config.runCommand(...)`. We forward unknown flags as-is so * `--limit`, `--json`, etc. flow through to the underlying command. */ export default class AuditLog extends BaseCommand { static args: { name: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; static description: string; static examples: string[]; static strict: boolean; run(): Promise; }