export type CellWidth = 1 | 2; export type BuiltinWidthProvider = "default" | "cjk" | "narrow-ambiguous"; export type WidthProvider = BuiltinWidthProvider | ((text: string) => CellWidth); export declare function charCellWidth(text: string, provider?: WidthProvider): CellWidth;