UNPKG

xbpr

Version:

xbp react ui by @arco-design/web-react

8 lines (7 loc) 389 B
import { PropsWithChildren } from 'react'; import { TypographyParagraphProps, TypographyTitleProps, TypographyTextProps } from './interface'; declare type BaseProps = PropsWithChildren<TypographyParagraphProps & TypographyTitleProps & TypographyTextProps> & { componentType: 'Title' | 'Paragraph' | 'Text'; }; declare function Base(props: BaseProps): JSX.Element; export default Base;