export default Title;
type tags = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
const tagsStatus = 'h1' as tags;

declare function Title({
  id,
  level,
  color,
  serif,
  light,
  center,
  noMargin,
  children,
  className,
  decoration
}: {
  id: string;
  level: tagsStatus;
  color: string;
  serif?: boolean;
  light?: boolean;
  center?: boolean;
  noMargin?: boolean;
  children: React.node;
  className: string;
  decoration: string;
}): JSX.Element;

//# sourceMappingURL=index.d.ts.map
