import { type ReactNode } from 'react'; import { type TruncateMode } from '../../types'; export declare const truncateByWords: (content: string, limit: number) => string; export declare const truncateByCharacters: (content: string, limit: number) => string; export declare const truncateByLines: (content: string) => string; export declare const useTruncatedText: (content: ReactNode, mode: TruncateMode, limit?: number) => ReactNode;