import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type SizeType = 1 | 2 | 3 | 4 | "1" | "2" | "3" | "4"; declare type SizeResponsiveType = { [key: string]: SizeType; }; declare type TitleProps = { aria?: { [key: string]: string; }; bold?: boolean; children?: React.ReactChild[] | React.ReactChild; className?: string; color?: "default" | "light" | "lighter" | "success" | "error" | "link"; data?: { [key: string]: string; }; id?: string; size?: SizeType | SizeResponsiveType; tag?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "div" | "span"; text?: string; truncate?: null | "1" | "2" | "3" | "4" | "5"; variant?: null | "link"; } & GlobalProps; declare const Title: (props: TitleProps) => React.ReactElement; export default Title;