import React, { Component } from 'react'; export default interface CommonTitleProps { prefixCls?: string; renderMidCustomView?: any; renderEndCustomView?: any; title?: string; rightTxt?: string; arrowRightIcon?: string; isShowRightIcon?: boolean; isShowRightTxt?: boolean; style?: React.CSSProperties; titleStyle?: React.CSSProperties; rightTxtStyle?: React.CSSProperties; rightIconStyle?: React.CSSProperties; onEndClick?: Function; } export default class CommonTitleLayout extends Component { static defaultProps: { prefixCls: string; title: string; rightTxt: string; arrowRightIcon: any; isShowRightIcon: boolean; isShowRightTxt: boolean; }; render(): JSX.Element; }