import React from 'react';
import { TdTitleProps } from './type';
import type { StyledProps } from '../common';
export type TypographyTitleProps = TdTitleProps & StyledProps & {
    children: React.ReactNode;
};
export declare const Title: React.ForwardRefExoticComponent<TdTitleProps & StyledProps & {
    children: React.ReactNode;
} & React.RefAttributes<HTMLHeadingElement>>;
export default Title;
