import { SfCommand } from '@salesforce/sf-plugins-core'; export type OrgDisableTrackingResult = { tracksSource: boolean; username: string; }; export default class OrgDisableTracking extends SfCommand { static readonly summary: string; static readonly description: string; static readonly examples: string[]; static readonly flags: { 'target-org': import("@oclif/core/interfaces").OptionFlag; }; run(): Promise; }