///
import React from 'react';
import { HTMLAttributes, ReactNode } from "react";
import { Color } from "./colors";
type FontType = 'Fira Sans' | 'Exo 2';
type NativeProps = HTMLAttributes;
type HeadingProps = Omit & {
tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
color?: Color;
weight?: 'regular' | 'medium' | 'bold';
font?: FontType;
noMargins?: boolean;
className?: string;
children?: ReactNode;
};
type HeadingElementType = HTMLHeadingElement | HTMLDivElement;
declare const Heading: React.ForwardRefExoticComponent & {
tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'div';
color?: "" | undefined;
weight?: "medium" | "bold" | "regular" | undefined;
font?: FontType | undefined;
noMargins?: boolean | undefined;
className?: string | undefined;
children?: ReactNode;
} & React.RefAttributes>;
export { FontType, HeadingProps, Heading };