import React from 'react'; import type { StyledProps } from '../common'; import type { TdTitleProps } from './type'; export interface TitleProps extends TdTitleProps, StyledProps { } declare const Title: React.ForwardRefExoticComponent>; export default Title;