import React, { FunctionComponent } from "react"; import "./Typography.css"; declare type TextProps = React.DetailedHTMLProps, HTMLHeadingElement> | React.DetailedHTMLProps, HTMLParagraphElement> | React.DetailedHTMLProps, HTMLPreElement> | React.DetailedHTMLProps, HTMLSpanElement>; export interface TypographyProps { variant: "paragraph" | "span" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "terminal"; pixelated?: boolean; } export declare const Typography: FunctionComponent; export {};