/** * Soft-wrap + hard-cap helpers for the prompt-actions modal body. * Kept free of OpenTUI imports so unit tests stay pure-Node. */ /** Soft-wrap + hard-cap lines for the prompt preview body. */ export declare function preparePromptPreview(text: string, maxCols: number, maxLines: number): { lines: string[]; truncated: boolean; totalLines: number; };