import { type Styles } from "../core/styles.js"; /** * Wraps or truncates text based on the specified maximum width and wrap type. * Results are cached to improve performance. * * @param text - The text to wrap or truncate. * @param maxWidth - The maximum width allowed for the text. * @param wrapType - The type of wrapping logic (e.g., 'wrap', 'truncate'). * @returns The wrapped or truncated text. */ export declare const wrapText: (text: string, maxWidth: number, wrapType: Styles["textWrap"]) => string;