import React from 'react'; import { NormalTypes } from '../utils/prop-types'; interface 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; className?: string; size?: string | number; type?: NormalTypes; } declare const defaultProps: { 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; className: string; type: "default" | "secondary" | "success" | "warning" | "error"; }; type NativeAttrs = Omit, keyof Props>; export type TextProps = Props & typeof defaultProps & NativeAttrs; declare const _default: React.ComponentType & Omit, "small" | "b" | "blockquote" | "del" | "em" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "i" | "p" | "span" | "type" | "className">>; export default _default;