import * as React from 'react';
import './index.less';
interface IndexProps {
    content: string;
    maxLen?: number;
    expandText?: string;
    collapseText?: string;
    onExpand?: (expanded: boolean) => void;
}
/**
 * 自定义文字展开收起组件
 * @param props
 * @constructor
 */
declare function TextExpand(props: IndexProps): React.JSX.Element;
export default TextExpand;
