import * as React from 'react'; import classNames from 'classnames'; export interface SkeletonTitleProps { prefixCls?: string; className?: string; style?: object; width?: number | string; } class Title extends React.Component { render() { const { prefixCls, className, width, style } = this.props; return

; } } export default Title;