import React from 'react'; import { type FlexAllProps } from 'reflexy/styled'; export type TruncatedTextProps = FlexAllProps & { readonly lines?: number | undefined; }; export default function TruncatedText({ component, ...rest }: TruncatedTextProps): React.JSX.Element;