import { ReactElement } from 'react'; import { CommonProps } from '../../common'; export interface TitleProps extends CommonProps { /** * Title content. */ children: string | ReactElement; /** * Title's font-weight. */ fontWeight?: 'light' | 'regular' | 'semi-bold' | 'bold'; /** * Visual intent color to apply to text. */ intent?: 'main' | 'subdued'; /** * The level of Title including 1, 2, 3, 4 or 5 which are equivalent to h1, h2, h3, h4 and h5. */ level?: 1 | 2 | 3 | 4 | 5; } declare const Title: ({ level, children, intent, fontWeight, id, className, style, sx, "data-test-id": dataTestId, }: TitleProps) => ReactElement; export default Title;