export type TextOverflowMode = "ellipsis" | "clip"; export declare function displayWidth(value: string): number; export declare function truncateEnd(value: string, maxWidth: number, options?: { overflow?: TextOverflowMode; ellipsis?: string; }): string; export declare function padEndTo(value: string, width: number): string; export declare function formatFixedWidth(value: string, width: number, options?: { overflow?: TextOverflowMode; ellipsis?: string; }): string; //# sourceMappingURL=text-layout.d.ts.map