import { BaseCommand } from '../index.js'; /** * Discoverability wrapper. `qfg log` is muscle memory from `git log`; route * it to the workspace activity feed. */ export default class Log extends BaseCommand { static description: string; static examples: string[]; static strict: boolean; run(): Promise; }