import React from 'react';
import { StyleProp, TextStyle } from 'react-native';
interface IProps {
    children?: string;
    style?: StyleProp<TextStyle>;
    numberOfLines?: number;
}
declare const TextTruncate: React.MemoExoticComponent<(props: IProps) => React.JSX.Element>;
export default TextTruncate;
