
import * as React from 'react';


interface TitleProps {
  slot?: string;
  className?: string;
  style?: React.CSSProperties;
  size?: 'xsmall' | 'small' | 'normal' | 'large' | 'xlarge';
  textAlign?: 'center' | 'left' | 'right';
  noSpace?: boolean;
  bold?: boolean;
  ref?: React.MutableRefObject<{el: HTMLElement | null;}>;
  children?: React.ReactNode;
}
declare const Title: React.FunctionComponent<TitleProps>;

export default Title;
  