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, React.ClassAttributes & React.HTMLAttributes & TypographyProps> { } export interface CardSubTitleProps { /** * 类型 */ type?: string; /** * 子元素 */ children?: React.ReactNode; } declare const CardSubTitle: TextComp; export default CardSubTitle;