import { Component } from 'react'; import './description.scss'; interface Props { description: any; extraCls?: string; expand: (p: any) => void; translation?: any; } interface State { isExpand: boolean; isDisplayExpandButton: boolean; } export default class Description extends Component { private descriptionPreRef; private descriptionWrapperRef; state: State; constructor(props: any); componentDidMount(): void; expand(): void; render(): JSX.Element; } export {};