import { UpdateStyle } from '../types/update-style'; /** * Prints a warning message for actions that were skipped during scanning. * * @param skipped - Array of skipped actions with their current versions. * @param includeBranches - Whether branch-pinned actions are being checked. * @param style - Effective update style for the current run. */ export declare function printSkippedWarning(skipped: { action: { version?: string | null; uses?: string; name: string; }; skipReason?: 'unsupported-style' | 'unknown' | 'branch'; currentVersion: string | null; }[], includeBranches: boolean, style: UpdateStyle): void;