import * as React from "react"; import type { TitleTypographyOwnProps, PolymorphicWithRef } from "../types"; import { TitleTypographyBase } from "../base-components"; type TitleTypographyProps = PolymorphicWithRef< T, TitleTypographyOwnProps >; type TitleTypographyElement = ( props: TitleTypographyProps ) => React.ReactElement>; const TitleTypography: TitleTypographyElement = React.forwardRef( ( props: TitleTypographyProps, innerRef: typeof props.ref ) => { const { component, ...rest } = props; return ; } ); export default TitleTypography;