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