/** * Formats a command string for display with status indicator. * * @param bin Command string with arguments. * @param options Command options (cwd, env). * @param status Command status ('pending' | 'success' | 'failure'). * @returns Formatted command string with colored status indicator. */ export declare function formatCommandStatus(bin: string, options?: { env?: Record; cwd?: string; }, status?: 'pending' | 'success' | 'failure'): string;