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