import React from "react"; export interface HeadingProps { className?: string; tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; size?: "f1" | "f2" | "f3" | "f4" | "f5" | "f6"; lineHeight?: "lh-title" | "lh-solid" | "lh-copy"; flushTop?: boolean; flushBottom?: boolean; flush?: boolean; } declare const Heading: React.FC; export default Heading;