import { UpdateMode } from '../types/update-mode'; /** * Prints a warning message for actions that were skipped due to update mode * restrictions. * * @param blocked - Array of blocked actions with their current versions. * @param mode - The current update mode (patch/minor/major). */ export declare function printModeWarning(blocked: { action: { version?: string | null; uses?: string; name: string; }; currentVersion: string | null; }[], mode: UpdateMode): void;