import type { TruncationMode } from '../../../typography/text-ellipsis/TextEllipsis.js'; /** * @deprecated Use `truncateString` from `core/components/text-ellipsis/truncate-string` instead. * can be removed APPDEV-15421 * @internal */ export declare const truncateText: (text: string, truncationMode: TruncationMode, stopTruncation: (text: string) => boolean) => string; /** * @deprecated Use the ellipsis character from `typography/utils` instead. * can be removed APPDEV-15421 * @internal */ export declare const ELLIPSIS = "..."; /** * @deprecated Use `truncateString` from `core/components/text-ellipsis/truncate-string` instead. * can be removed APPDEV-15421 * @internal */ export declare const middleTruncation: (text: string) => string; /** * @deprecated Use `truncateString` from `core/components/text-ellipsis/truncate-string` instead. * can be removed APPDEV-15421 * @internal */ export declare const startTruncation: (text: string) => string; /** * @deprecated Use `truncateString` from `core/components/text-ellipsis/truncate-string` instead. * can be removed APPDEV-15421 * @internal */ export declare const endTruncation: (text: string) => string; /** * @deprecated Use `truncateString` from `core/components/text-ellipsis/truncate-string` instead. * can be removed APPDEV-15421 * @internal */ export declare const TRUNCATE_LABEL: Record string>;