import type { TruncationMode } from '@dynatrace/strato-components/typography'; /** * @internal */ export declare const truncateText: (text: string, truncationMode: TruncationMode, stopTruncation: (text: string) => boolean) => string; export declare const ELLIPSIS = "..."; export declare const middleTruncation: (text: string) => string; export declare const startTruncation: (text: string) => string; export declare const endTruncation: (text: string) => string; export declare const TRUNCATE_LABEL: Record string>;