import { FlagsConfig, SfdxCommand } from '@salesforce/command';
export declare type SourceTrackingResetResult = {
    sourceMembersSynced: number;
    localPathsSynced: number;
};
export declare class SourceTrackingResetCommand extends SfdxCommand {
    static readonly description: string;
    static readonly requiresProject = true;
    static readonly requiresUsername = true;
    static readonly flagsConfig: FlagsConfig;
    run(): Promise<SourceTrackingResetResult>;
}
