import type { Services, CLIResult } from '../../common/types.js';
export interface RefactorArgs {
    ticketId: string;
    verbose?: boolean;
    focus?: string[] | string;
    _forceAnalysisError?: boolean;
}
export declare function refactorPhase(args: RefactorArgs, services: Services): Promise<CLIResult>;
