import React from 'react'; import { ColorVariants } from '../../utils/types'; export declare type TitleProps = { className?: string; color?: ColorVariants; level: 1 | 2 | 3 | 4 | 5 | 6; text: string; }; declare const Title: React.FC; export { Title };