import { SfCommand } from '@salesforce/sf-plugins-core'; import { type SyncResult } from '../../../services/docs-sync.js'; export type DocsSyncResult = { results: SyncResult[]; totalSynced: number; totalFailed: number; totalFiles: number; }; export default class DocsSync extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { profile: import("@oclif/core/interfaces").OptionFlag; force: import("@oclif/core/interfaces").BooleanFlag; 'max-pages': import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; private logSyncResult; }