import * as React from "react"; export interface Props { children: any; className?: string; display?: "default" | "light"; id?: string; noBottomMargin?: boolean; noTopMargin?: boolean; body?: "default" | "small" | "smallCaps"; variant?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p"; } declare const Typography: React.FC; export default Typography;