import React from 'react'; import { StyledTextVariants } from "./style"; import { MestGenericProps } from "../themes"; type Props = { h1?: boolean; h2?: boolean; h3?: boolean; h4?: boolean; h5?: boolean; h6?: boolean; p?: boolean; b?: boolean; small?: boolean; i?: boolean; span?: boolean; del?: boolean; em?: boolean; blockquote?: boolean; } & MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type TextProps = Props & StyledTextVariants & NativeAttrs; declare const Text: React.FC>; export default Text;