import type { Services, CLIResult } from '../../common/types.js';
export interface RedArgs {
    ticketId: string;
    type?: 'unit' | 'integration' | 'both';
    interactive?: boolean;
    dryRun?: boolean;
}
export declare function redPhase(args: RedArgs, services: Services): Promise<CLIResult>;
