import React from 'react'; export interface ReadMoreProps { children: string; maxLength?: number; restMinLength?: number; classes?: { root?: string; textContainer?: string; description?: string; }; } declare const ReadMore: React.FC; export default ReadMore;