export type TextMiddleTruncatedProps = { /** * Content */ children?: string | number; disableTooltip?: boolean; /** * Maximum number of lines to display. * When maxLines > 1, the second-to-last line ends with "..." and the last line shows the end of text. * * e.g. with maxLines=4: * * line1 * * line2 * * line3... * * line4 */ maxLines?: number; className?: string; testId?: string; }; export declare const TextMiddleTruncated: (props: TextMiddleTruncatedProps) => JSX.Element; //# sourceMappingURL=TextMiddleTruncated.d.ts.map