import * as React from 'react'; import type { JSX } from 'react'; import type { DirectionType } from '../config-provider'; export interface TypographyProps extends React.HTMLAttributes { id?: string; prefixCls?: string; className?: string; rootClassName?: string; style?: React.CSSProperties; children?: React.ReactNode; 'aria-label'?: string; direction?: DirectionType; } interface InternalTypographyProps extends TypographyProps { } declare const Typography: React.ForwardRefExoticComponent & React.RefAttributes>; export default Typography;