import React, { FC } from 'react'; import { MediaPropsType } from '../../util/externalClasses'; import { SizeType, TextColorType, WeightType } from '../../util/global-props'; import './title.component.scss'; export declare type TitlePropsType = { children?: React.ReactNode | string; size?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'; sizeSm?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'; align?: 'left' | 'center' | 'right'; weight?: WeightType; color?: TextColorType; margin?: SizeType; padding?: SizeType; flex?: number | string; styles?: React.CSSProperties; hide?: MediaPropsType; lg?: TitlePropsType; md?: TitlePropsType; sm?: TitlePropsType; xsm?: TitlePropsType; }; export declare const Title: FC;