import React from 'react';
import { ComponentBaseProps } from '../../core';
import { TypographyBodyProps } from './Typography';
declare const typographyLevel: readonly [1, 2, 3, 4, 5, 6];
export interface TitleProps extends TypographyBodyProps, ComponentBaseProps {
    level?: typeof typographyLevel[number] | `${typeof typographyLevel[number]}`;
}
export declare const Title: React.ForwardRefExoticComponent<TitleProps & React.RefAttributes<HTMLHeadingElement>>;
export {};
