import React from 'react'; import { StyledComponentClass } from 'styled-components'; import { TypographyProps } from '../Typography'; import { Theme } from '../types'; interface TextComp extends StyledComponentClass & React.HTMLAttributes & TypographyProps, Theme> { } /** * @ReactComponent * * 列表标题 * @param {} props * @returns */ declare const Subheader: TextComp; export default Subheader;