import React from 'react';
import { TextVariant } from '../types';
declare type Props = {
children: React.ReactNode;
color?: string;
variant?: TextVariant;
};
export declare const Title: ({ children, variant, color, }: Props) => JSX.Element;
export default Title;