import * as React from 'react'; import type { JSX } from 'react'; import type { DirectionType } from '../config-provider'; import type { BaseTypographyProps, TypographySemanticType } from './Base'; export interface TypographyProps extends BaseTypographyProps { } interface InternalProps extends React.HTMLAttributes { className?: string; rootClassName?: string; style?: React.CSSProperties; children?: React.ReactNode; component?: keyof JSX.IntrinsicElements; direction?: DirectionType; classNames?: TypographySemanticType['classNames']; styles?: TypographySemanticType['styles']; prefixCls: string; } declare const InternalTypography: React.ForwardRefExoticComponent>; declare const Typography: React.ForwardRefExoticComponent & React.RefAttributes>; export default Typography; export { InternalTypography };