import React from 'react'; import { StyledComponentClass } from 'styled-components'; import { TypographyProps } from '../Typography'; import { Theme } from '../types'; export interface SecondaryTextProps { /** * 紧缩型 * * @type {boolean} * @memberof SecondaryTextProps */ dense?: boolean; children?: string; type?: string; } interface TextComp extends StyledComponentClass & React.HTMLAttributes & TypographyProps, Theme, React.ClassAttributes & React.HTMLAttributes & SecondaryTextProps> { } declare const SecondaryText: TextComp; export default SecondaryText;