//#region src/displaywidth.d.ts /** * Computes the terminal display width of a string, accounting for * East Asian wide characters, combining marks, emoji, and ANSI escapes. * * @param text The string to measure. * @returns The number of terminal columns the string occupies. * @internal */ declare function getDisplayWidth(text: string): number; //#endregion export { getDisplayWidth };