import { SfCommand } from '@salesforce/sf-plugins-core'; export type SetupAgentsSyncResult = { pushed?: string[]; pulled?: string[]; conflicts?: number; gistId?: string; url?: string; dryRun: boolean; cwd: string; }; export default class Sync extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { remote: import("@oclif/core/interfaces").OptionFlag; pull: import("@oclif/core/interfaces").BooleanFlag; 'dry-run': import("@oclif/core/interfaces").BooleanFlag; }; run(): Promise; }