import * as React from "react"; declare type TextProps = { tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "p" | "div" | "span" | "label"; style?: "default-style" | "page-title" | "title" | "display" | "heading" | "paragraph" | "lede" | "body" | "body-bold" | "small" | "small-bold" | "notification" | "label" | "control-action" | "button"; inheritBaseline?: boolean; inline?: boolean; }; declare const Text: React.FunctionComponent; export default Text;