import type { PrintConsoleOptions } from './type.js'; /** * Prints a warning message to the console. * @param title - The title of the warning * @param message - The message lines to print * @param options - Presentation options and optional structured details */ export declare const printWarning: (title: string, message: readonly string[], options?: PrintConsoleOptions) => void;