import * as React from 'react'; import type { Alignment, Placement } from '../../../tooltip/tooltip'; import type { TextProps, TitleProps } from '../../typography'; import type { TruncatedMeasure } from './is_truncated'; type TruncatedProps = { children: string measure?: TruncatedMeasure lineClamp?: number tooltipPlacement?: Placement tooltipAlignment?: Alignment } & Omit; export type TruncatedTextProps = TruncatedProps; export type TruncatedTitleProps = TruncatedProps; export declare const TruncatedText: React.ComponentType; export declare const TruncatedTitle: React.ComponentType; export {};