import * as React from 'react'; export interface Props { children: React.ReactNode; } export default function Truncate({ children }: Props): JSX.Element;